Home Java Java-conversion Convert String to long



Convert String to long
Posted on: April 17, 2011 at 12:00 AM
This page discusses - Convert String to long

Convert String to long

     

In this section, we will learn how to convert String to long. The following program provides you the functionality to convert String to long.

Code Description:

In this program we have taken a String as "String s = 20000" as shown below. To convert this String to long we have used "parseLong()" method in a try and catch block to catch the exception if occurs. Therefore we get the following output of the program as shown below.

Here is the code of the program:

public class StrToLong {
  public static void main (String[] args) {
 String s = "20000";
 try {
 long l = Long.parseLong(s.trim());
 System.out.println("long l = " + l);
  catch (NumberFormatException e) {
 System.out.println("NumberFormatException: " + e.getMessage());
  }
  }
 }

Output of the program:

C:\unique>javac StrToLong.java

C:\unique>java StrToLong
long l = 20000

C:\unique>

Download this example.

Related Tags for Convert String to long:


More Tutorials from this section

Ask Questions?    Discuss: Convert String to long  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.