setInt() method of java.lang.reflect.Field used to set the value of a field as an int on the specified object. When you need to set the value of a field of an object as int then you can use this method to set value over an Object. Syntax:
public void setInt(Object obj, int i)
throws IllegalArgumentException,
IllegalAccessException
Parameters: This method accepts  two parameters:
- obj: which is the object whose field should be modified and
- i: which is the new value for the field of obj being modified.
Return: This method returns nothing. Exception: This method throws the following Exception:
- IllegalAccessException: if this Field object is enforcing Java language access control and the underlying field is either inaccessible or final.
- IllegalArgumentException: if the specified object is not an instance of the class or interface declaring the underlying field (or a subclass or implementer thereof), or if an unwrapping conversion fails.
- NullPointerException: if the specified object is null and the field is an instance field.
- ExceptionInInitializerError: if the initialization provoked by this method fails.
Below programs illustrate setInt() method: Program 1:Â
Java
// Java program to illustrate setInt() methodimport java.lang.reflect.Field;Â
public class GFG {Â
    public static void main(String[] args)        throws Exception    {Â
        // create user object        Employee emp = new Employee();Â
        // print value of salary        System.out.println(            "Value of salary before "            + "applying setInt is "            + emp.salary);Â
        // Get the field object        Field field = Employee.class.getField("salary");Â
        // Apply setInt Method        field.setInt(emp, 2243599);Â
        // print value of salary        System.out.println(            "Value of salary after "            + "applying setInt is "            + emp.salary);Â
        // print value of uniqueNo        System.out.println(            "Value of uniqueNo before "            + "applying setInt is "            + emp.uniqueNo);Â
        // Get the field object        field = Employee.class.getField("uniqueNo");Â
        // Apply setInt Method        field.setInt(emp, 123434);Â
        // print value of uniqueNo        System.out.println(            "Value of uniqueNo after "            + "applying setInt is "            + emp.uniqueNo);    }}Â
// sample classclass Employee {Â
    // static int values    public static int uniqueNo = 234289;    public static int salary = 1125213;} |
Value of salary before applying setInt is 1125213 Value of salary after applying setInt is 2243599 Value of uniqueNo before applying setInt is 234289 Value of uniqueNo after applying setInt is 123434
Program 2:Â
Java
// Java program to illustrate setInt() methodÂ
import java.lang.reflect.Field;Â
public class GFG {Â
    public static void main(String[] args)        throws Exception    {Â
        // create Numbers object        Numbers no = new Numbers();Â
        // Get the value field object        Field field = Numbers.class                          .getField("value");Â
        // Apply setInt Method        field.setInt(no, 53266);Â
        // print value of isActive        System.out.println(            "Value after "            + "applying setInt is "            + Numbers.value);    }}Â
// sample Numbers classclass Numbers {Â
    // static int value    public static int value = 13685;} |
Value after applying setInt is 53266
Reference: https://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html#setInt-java.lang.Object-int-
