-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExplorePrivateTest.java
More file actions
60 lines (40 loc) · 1.47 KB
/
ExplorePrivateTest.java
File metadata and controls
60 lines (40 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
import org.junit.Test;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
public class ExplorePrivateTest {
private String privateMsg = "Original";
private void privateMethod(String head, int tail){
System.out.println(head + " " + tail);
}
public String getMsg(){
return privateMsg;
}
private void getPrivateMethod() throws Exception{
ExplorePrivateTest ept = new ExplorePrivateTest();
Class clazz = ept.getClass();
Method privateMethod = clazz.getDeclaredMethod("privateMethod", String.class, int.class);
if(privateMethod != null){
privateMethod.setAccessible(true);
privateMethod.invoke(ept, "java reflect", 666);
}
}
@Test
public void test() throws Exception {
getPrivateMethod();
}
private void modifyPrivateField() throws NoSuchFieldException, IllegalAccessException {
ExplorePrivateTest ept = new ExplorePrivateTest();
Class clazz = ept.getClass();
Field privateField = clazz.getDeclaredField("privateMsg");
if(privateField != null){
privateField.setAccessible(true);
System.out.println("Before modified: " + ept.getMsg());
privateField.set(ept, "Modified");
System.out.println("After modified: " + ept.getMsg());
}
}
@Test
public void test2() throws NoSuchFieldException, IllegalAccessException {
modifyPrivateField();
}
}