Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got a simple question in Java:

How can I convert a String that was obtained by Long.toString() to long ?

share|improve this question

4 Answers

up vote 37 down vote accepted
 Long.parseLong("0", 10) returns 0L
 Long.parseLong("473", 10) returns 473L
 Long.parseLong("-0", 10) returns 0L
 Long.parseLong("-FF", 16) returns -255L
 Long.parseLong("1100110", 2) returns 102L
 Long.parseLong("99", 8) throws a NumberFormatException
 Long.parseLong("Hazelnut", 10) throws a NumberFormatException
 Long.parseLong("Hazelnut", 36) returns 1356099454469L
share|improve this answer

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

share|improve this answer
That is not what OP is asking. – Christian Mann Oct 7 '11 at 22:11
I fail to see why this was downvoted. It's not wrong. – Mike Daniels Oct 7 '11 at 22:12
I think valueOf returns a String... – Belgi Oct 7 '11 at 22:14
2  
@Belgi. No, it returns java.lang.Long – Alexander Pogrebnyak Oct 7 '11 at 22:20
@Belgi - Long.valueOf returns a Long, not a string. – Don Roby Oct 7 '11 at 22:20
show 1 more comment

Long.valueOf(String s) - obviously due care must be taken to protect against non-numbers if that is possible in your code.

share|improve this answer
1  
note: this method returns not long but Long object – Viacheslav Dobromyslov Feb 6 at 4:07
public class StringToLong {

   public static void main (String[] args) {

      // String s = "fred";    // do this if you want an exception

      String s = "100";

      try {
         long l = Long.parseLong(s);
         System.out.println("long l = " + l);
      } catch (NumberFormatException nfe) {
         System.out.println("NumberFormatException: " + nfe.getMessage());
      }

   }
}
share|improve this answer
Is trim necessary? – Steve Kuo Oct 7 '11 at 23:26
no , i'll edit my answer , thanks =) – FrozenFlame Oct 7 '11 at 23:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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