如何在Java中将String转换成int ?
我的字符串只包含数字,我想要返回它所代表的数字。
例如,所给的字符是"1234"
结果应该是数字 1234
。
转载于:https://stackoverflow.com/questions/5585779/how-do-i-convert-a-string-to-an-int-in-java
如何在Java中将String转换成int ?
我的字符串只包含数字,我想要返回它所代表的数字。
例如,所给的字符是"1234"
结果应该是数字 1234
。
转载于:https://stackoverflow.com/questions/5585779/how-do-i-convert-a-string-to-an-int-in-java
String myString = "1234";
int foo = Integer.parseInt(myString);
See the Java Documentation for more information.