私の質問:IllegalAccessException
リフレクションを使用してオブジェクトのフィールドの値にアクセスする方法を克服する方法。
拡張:自分のプロジェクトのいくつかをより汎用的にするために、リフレクションについて学ぼうとしています。そのオブジェクトのそのフィールドの値を取得するためIllegalAccessException
に呼び出そうとすると、エラーが発生します。field.getValue(object)
名前とタイプは問題なく取得できます。
宣言を から に変更するprivate
とpublic
、これは正常に機能します。しかし、カプセル化の「規則」に従うために、私はこれをしたくありません。どんな助けでも大歓迎です!ありがとう!
私のコード:
package main;
import java.lang.reflect.Field;
public class Tester {
public static void main(String args[]) throws Exception {
new Tester().reflectionTest();
}
public void reflectionTest() throws Exception {
Person person = new Person("John Doe", "555-123-4567", "Rover");
Field[] fields = person.getClass().getDeclaredFields();
for (Field field : fields) {
System.out.println("Field Name: " + field.getName());
System.out.println("Field Type: " + field.getType());
System.out.println("Field Value: " + field.get(person));
//The line above throws: Exception in thread "main" java.lang.IllegalAccessException: Class main.Tester can not access a member of class main.Tester$Person with modifiers "private final"
}
}
public class Person {
private final String name;
private final String phoneNumber;
private final String dogsName;
public Person(String name, String phoneNumber, String dogsName) {
this.name = name;
this.phoneNumber = phoneNumber;
this.dogsName = dogsName;
}
}
}
出力:
run:
Field Name: name
Field Type: class java.lang.String
Exception in thread "main" java.lang.IllegalAccessException: Class main.Tester can not access a member of class main.Tester$Person with modifiers "private final"
at sun.reflect.Reflection.ensureMemberAccess(Reflection.java:95)
at java.lang.reflect.AccessibleObject.slowCheckMemberAccess(AccessibleObject.java:261)
at java.lang.reflect.AccessibleObject.checkAccess(AccessibleObject.java:253)
at java.lang.reflect.Field.doSecurityCheck(Field.java:983)
at java.lang.reflect.Field.getFieldAccessor(Field.java:927)
at java.lang.reflect.Field.get(Field.java:372)
at main.Tester.reflectionTest(Tester.java:17)
at main.Tester.main(Tester.java:8)
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds)