I got a simple question in Java:
How can I convert a String that was obtained by Long.toString() to long ?
|
I got a simple question in Java: How can I convert a String that was obtained by Long.toString() to long ? |
||||
|
|
|
|||
|
|
|
To convert a String to a long (primitive), use Long.valueOf(String s).longValue(); See http://download.oracle.com/javase/6/docs/api/java/lang/Long.html |
|||||||||||||
|
|
Long.valueOf(String s) - obviously due care must be taken to protect against non-numbers if that is possible in your code. |
|||||
|
|
|||||
|
|