Signup/Sign In

Java Integer parseUnsignedInt(String s, int radix) Method

Java parseUnsignedInt(String s,int radix) method is the part of the Integer class of the java.lang package. This method is used to parse the string value as an unsigned decimal integer in the specified integer radix value passed as an argument.

It must be noted that the characters passed in the string must be all decimal except for the first character which is used to define the sign of the integer. The ASCII plus '+' sign is used to depict a positive value.

Syntax:

public static int parseUnsignedInt (String s, int radix)  

Parameters:

The parameter passed is the string value whose unsigned decimal Integer object is to be returned and the integer radix value according to which the input string will be parsed.

Exception:

NumberFormatException: This exception occurs when the input string is not parsable.

Returns:

Returns the value as the unsigned decimal Integer object of the String value passed as a parameter in accordance with the radix value.

Example 1:

Here, the unsigned decimal integer representation is returned of the String value in accordance with the integer radix passed.

import java.lang.Integer;

public class StudyTonight
{  
        public static void main(String[] args)throws NumberFormatException 
        { 
            String s1 = "603";
            String s2 = "834";
            int radix = 16;  
            System.out.print("\nEntered value and Base value is: " + s1 + " and " + radix);  
           //returns the unsigned Integer object of the entered string in accordance with the radix            
            System.out.println("\nEquivalent Integer object is " + Integer.parseUnsignedInt(s1, radix)); 
            
            System.out.print("\nEntered value and Base value is: " + s2 + " and " + radix);  
           //returns the unsigned Integer object of the entered string in accordance with the radix            
            System.out.println("\nEquivalent Integer object is " + Integer.parseUnsignedInt(s2, radix)); 
        }            
}  


Entered value and Base value is: 603 and 16
Equivalent Integer object is 1539

Entered value and Base value is: 834 and 16
Equivalent Integer object is 2100

Example 2:

Here is a user-defined example where anyone using this code can put a value of his choice and get the equivalent output.

import java.util.Scanner; 

public class StudyTonight
{  
    public static void main(String[] args)
    {  
        try
        {
          System.out.print("Enter the value: ");  
          Scanner sc = new Scanner(System.in);  
          String s = sc.nextLine();  
          System.out.print("Enter the radix: "); 
          int radix = sc.nextInt();
          System.out.println("Equivalent Integer object : " +Integer.parseUnsignedInt(s,radix)); //parse the string value into unsigned value with respect to radix 
        }
        catch(NumberFormatException e)
        {
          System.out.println("Invalid Input!!");
        }  
    }  
}  


Enter the value: 744
Enter the radix: 16
Equivalent Integer object : 1860
************************************
Enter the value: -234
Enter the radix: 8
Invalid Input!!

Live Example:

Here, you can test the live code example. You can execute the example for different values, even can edit and write your examples to test the Java code.



About the author:
A Computer Science and Engineering Graduate(2016-2020) from JSSATE Noida. JAVA is Love. Sincerely Followed Sachin Tendulkar as a child, M S Dhoni as a teenager, and Virat Kohli as an adult.