I'm not 100% on how to do this so i'm asking...

May seem stupid but...

How do I convert a string into an integer?

Background info: I have a textbox I have the user enter a number into...

it then:

     EditText et = (EditText) findViewById(R.id.entry1);
     String hello = et.getText().toString();

gets the string 'hello'

Now I want to convert it to a integer so I can get the number they typed in -will be used later on in code...

Is there a way to get the edittext to a integer? -That would skip the middle man... If not, string to integer will be just fine...

Thanks alot,

James

link|improve this question

feedback

2 Answers

up vote 41 down vote accepted

See the Integer class and the static parseInt() method:

http://developer.android.com/reference/java/lang/Integer.html

Integer.parseInt(et.getText().toString());

You will need to catch NumberFormatException though in case of problems whilst parsing, so:

int myNum = 0;

try {
    myNum = Integer.parseInt(et.getText().toString());
} catch(NumberFormatException nfe) {
   System.out.println("Could not parse " + nfe);
} 
link|improve this answer
How could I assign a variable to the new integer? – Steven Tilling Apr 25 '10 at 18:06
Never mind, got it working... thanks =] – Steven Tilling Apr 25 '10 at 18:22
Sorry, did update answer with variable assignment... – Jon Apr 25 '10 at 19:25
What about using manuel's way below? Is it more secure to use parseInt over valueOf? – Gabriel Fair Jan 26 at 9:21
no question is ever stupid – Nidhin_toms Apr 3 at 15:42
feedback
int in = Integer.valueOf(et.getText().toString());
//or
int in2 = new Integer(et.getText().toString());
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.