I was trying to fetch the value of an static private attribute via reflection, but it fails with an error.
Class class = home.Student.class; Field field = st
You can set the field accessible:
field.setAccessible(true);