Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Convert String to Integer and Integer to String in Java



Java lang package provides Integer class which has methods to convert integer to String and vice versa. You can convert a String to an integer using the parseInt() method and Integer to String using the toString() method.

Example

 Live Demo

public class Sample {
   public static void main(String args[]) {
      String str = "1212";
      int num = Integer.parseInt(str);
      System.out.println(num);
      String st = Integer.toString(num);
      System.out.println();
   }
}

Output

1212
1212


Updated on: 2019-07-30T22:30:21+05:30

3K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements