Skip to main content

Post 1: Core Java : Convert String to Long in Java

Convert String to Long in Java

The java.lang.Long class wraps a value of the primitive type long in an object. This class provides several methods to convert a long to a String and a String to a long, as well as other utility methods.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import java.text.NumberFormat;
import java.text.ParseException;
import java.util.Locale;
 
public class StringToLong {
 
 public static void main(String[] args) {
 
  // converting to long
  String number1 = "543210";
  long result = Long.valueOf(number1);
  System.out.println("Result=" + result);
 
  // remove all commas and then converting to long
  String bumber2 = "5,43,210";
  long result2 = Long.valueOf(bumber2.replaceAll(",", "").toString());
  System.out.println("Result=" + result2);
 
  // converting using Locale
  String number3 = "5,43,210";
  NumberFormat format = NumberFormat.getInstance(Locale.US);
  Number number = 0;
  try {
   number = format.parse(number3);
  } catch (ParseException e) {
   e.printStackTrace();
  }
  long result3 = number.longValue();
  System.out.println("Result=" + result3);
 }
 
}

Mixing NumberFormat and Long.parseLong() isn’t a good idea always. NumberFormat can be locale-aware (in your example it uses the default locale for your computer) or you can explicitly specify format patterns, whereas the parseXXX() methods of Number subclasses only read “plain” numbers (optional minus sign+digits).
If you formatted it with NumberFormat, you should use NumberFormat.parse() to parse it back. However you shouldn’t depend on the default locale, try to specify one instead. Here in my above example, I am using Locale.US local.
If you don’t care about the format, consider using Long.toString() to convert a long value into string and Long.parseLong() to convert it back. It’s easier to use and works the same everywhere.

Comments

Popular posts from this blog

TIME TABLE: VTU BE/B.Tech June/July 2016 Exam Time table Draft Layout

Semester-wise June-July 2016 Exam time table (Draft Layout) Are You Using updated Kwikstudy App?

Walkins Bangalore: 01st-Oct-2016

1. UTC Aerospace : GET – S&IS-Software Team hiring Electronics & CSE / IT Freshers ! Walkin on 1st OCT | BE/BTECH - 2015 & 2016 both batch can try Selection Process : Written Test Group Discussion Technical & HR Interviews How To Apply : It is a walk-in drive for 2016 batch eligible freshers on 1 Oct 2016 at Bangalore location. Interested and eligible candidates can walk-in to the following venue on 1 Oct 2016 Date of Drive : 01 Oct 2016 Reporting Time : 8:00 AM to 11:30 AM Venue : UTC Aerospace Systems – Site 1, Sy. Nos. 14/1 & 15/1, Maruthi Industrial State, Phase 2, Hoody Village, Whitefield Road, K R Puram Hobli, Bangalore – 560048 ______________________________________ 2. HP : Software Eng/ Software Tester (Call based ,less chance of getting entry , try at your own risk) Event Date : 1-October-2016 Event Time : 8 : 00 am Job Location : Bangalore / Chennai Job Description: Software Engineer /

How to get VTU Provisional Degree Certificate (PDC) ?

Here is the procedure to get the Provisional Degree Certificate from the VTU by passed out candidates. You can get the certificate through post by sending the required documents to VTU. Documents and things required: 1. Provisional Degree Certificate (PDC) application form 2. DD of specified fees amount or print copy of receipt if you paid the fees online 3. A letter to the VTU registrar 4. A4 size envelope Step 1: Fill the PDC application You can download the PDC application form from the VTU website. Click below link for application download. PDC application form download     After downloading the application take a print of it and properly fill the form. Step 2: Make a DD of specified amount as the fees of PDC: Go to the bank and make the DD of prescribed fee amount for the PDC. The fee amount is specified in the above link from where you downloaded the application. Make the DD in favor of " Finance Officer, VTU Belgaum ".   Wr