Java.lang Package Classes

Java Integer - getInteger() Method



The java.lang.Integer.getInteger() method is used to determine the integer value of the system property with the specified name. The first argument is treated as the name of a system property.

If there is no property with the specified name, if the specified name is empty or null, or if the property does not have the correct numeric format, then null is returned.

Syntax

public static Integer getInteger(String nm)

Parameters

nm Specify the property name.

Return Value

Returns the Integer value of the property.

Exception

Throws SecurityException, for the same reasons as System.getProperty.

Example:

In the example below, the java.lang.Integer.getInteger() method returns the Integer value of the system property with the given name.

import java.lang.*;

public class MyClass {
  public static void main(String[] args) {
    
    //creating system property using setProperty
    String x = "285";
    System.setProperty(x, "285");
    String y = "abc";
    System.setProperty(y, "abc");

    //printing the integer value of x
    System.out.print("The Integer value of x is: "); 
    System.out.println(Integer.getInteger(x)); 

    //printing the integer value of y 
    System.out.print("The Integer value of y is: "); 
    System.out.println(Integer.getInteger(y)); 
  }
}

The output of the above code will be:

The Integer value of x is: 285
The Integer value of y is: null

❮ Java.lang - Integer