I have a poorly designed class in a 3rd-party JAR and I need to access one of its private fields. For example, why should I need to choose priv
JAR
Try FieldUtils from apache commons-lang3:
FieldUtils.readField(object, fieldName, true);