Accessing Private Features with Reflection
< Java Programming < Reflection
All features of a class can be obtained via reflection, including access to private
methods & variables. But not always see .
Let us look at the following example:
 |
Code listing 10.3: Secret.java
1 public class Secret {
2 private String secretCode = "It's a secret";
3
4 private String getSecretCode() {
5 return secretCode;
6 }
7 }
|
Although the field and method are marked private
, the following class shows that it is possible to access the private
features of a class:
 |
Code listing 10.4: Hacker.java
1 import java.lang.reflect.Field;
2 import java.lang.reflect.InvocationTargetException;
3 import java.lang.reflect.Method;
4
5 public class Hacker {
6
7 private static final Object[] EMPTY = {};
8
9 public void reflect() throws IllegalAccessException, IllegalArgumentException, InvocationTargetException {
10 Secret instance = new Secret();
11 Class<?> secretClass = instance.getClass();
12
13 // Print all the method names & execution result
14 Method methods[] = secretClass.getDeclaredMethods();
15 System.out.println("Access all the methods");
16 for (Method method : methods) {
17 System.out.println("Method Name: " + method.getName());
18 System.out.println("Return type: " + method.getReturnType());
19 method.setAccessible(true);
20 System.out.println(method.invoke(instance, EMPTY) + "\n");
21 }
22
23 // Print all the field names & values
24 Field fields[] = secretClass.getDeclaredFields();
25 System.out.println("Access all the fields");
26 for (Field field : fields) {
27 System.out.println("Field Name: " + field.getName());
28 field.setAccessible(true);
29 System.out.println(field.get(instance) + "\n");
30 }
31 }
32
33 public static void main(String[] args) {
34 Hacker newHacker = new Hacker();
35
36 try {
37 newHacker.reflect();
38 } catch (Exception e) {
39 e.printStackTrace();
40 }
41 }
42 }
|
|
 |
Console for Code listing 10.4
Access all the methods
Method Name: getSecretCode
Return type: class java.lang.String
It's a secret
Access all the fields
Field Name: secretCode
It's a secret
|
|
JUnit - Test Private methods
JUnit's are unit test cases, used to test the Java programs. Now you know how to test a private method using Reflection in JUnit.
There's a long-standing debate on whether testing private members is a good habit[1];There are cases where you want to make sure a class exhibited the right behavior while not making the fields that need checking to assert that public (as it's generally considered bad practice to create accessors to a class just for the sake of a unit test). There are also cases when you can greatly simplify a test case by using reflection to test all smaller private methods (and their various branches), then test the main function.
With dp4j it is possible to test private members without directly using the Reflection API but simply accessing them as if they were accessible from the testing method; dp4j injects the needed Reflection code at compile-time[2].
- ↑ What's the best way of unit testing private methods?, March 7, 2011
- ↑ Reflection API injected at compile-time