Java

Convert String to int in Java

In Java, you can use Integer.parseInt() to convert a String to int.

1. Integer.parseInt() Examples

Example to convert a String “10” to an primitive int.

 

Output:

2. Integer.valueOf() Examples

Alternatively, you can use Integer.valueOf(), it will returns an Integer object.

Output

 

3. NumberFormatException

If the string does not contain a parsable integer, a NumberFormatException will be thrown.

Output


Exception in thread "main" java.lang.NumberFormatException: For input string: "10A"
at java.lang.NumberFormatException.forInputString(Unknown Source)
at java.lang.Integer.parseInt(Unknown Source)
at java.lang.Integer.valueOf(Unknown Source)

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.