Field.getChar(Object obj) has the following syntax.
public char getChar(Object obj) throws IllegalArgumentException , IllegalAccessException
In the following code shows how to use Field.getChar(Object obj) method.
/*ww w. j a v a 2 s.c o m*/ import java.lang.reflect.Field; class MyClass { public char i = 'c'; } public class Main { public static void main(String[] args) throws Exception { Class<?> clazz = Class.forName("MyClass"); MyClass x = (MyClass) clazz.newInstance(); Field f = clazz.getField("i"); System.out.println(f.getChar(x)); f.setChar(x, 'a'); System.out.println(f.getBoolean(x)); } }
The code above generates the following result.