1) How can I access the private methods and the private data members?
You can do it with little help of setAccessible(true) method
class Dummy{
private void foo(){
System.out.println("hello foo()");
}
private int i=10;
}
class Test{
public static void main(String[] args) throws Exception {
Dummy d=new Dummy();
/*--- [INVOKING PRIVATE METHOD] ---*/
Method m=Dummy.class.getDeclaredMethod("foo");
//m.invoke(d);//exception java.lang.IllegalAccessException
m.setAccessible(true);//Abracadabra
m.invoke(d);//now its ok
/*--- [GETING VALUE FROM PRIVATE FIELD] ---*/
Field f=Dummy.class.getDeclaredField("i");
//System.out.println(f.get(d));//not accessible now
f.setAccessible(true);//Abracadabra
System.out.println(f.get(d));//now its ok
/*--- [SETTING VALUE OF PRIVATE FIELD] ---*/
Field f2=Dummy.class.getDeclaredField("i");
//f2.set(d,20);//not accessible now
f2.setAccessible(true);//Abracadabra
f2.set(d,20);//now its ok
System.out.println(f2.get(d));
}
}
2) Is it possible to access local variable via Reflection?
No. Local variables cannot be accessed outside block in which they ware created, unless you put that variables outside by yourself (for example you will store them in some Collection)
3) Is there any way to prevent anyone from accessing private constructors, methods, and data members?
I think for constructors or methods you could use stacktrace to check if it was invoked by Reflection.
For fields I cant find solution to prevent accessing them via Reflection.
[WARNING: this is not approved by anyone, just wrote it inspired by your question.]
class Dummy {
private void safeMethod() {
try {
throw new Exception();
// if method was invoked by reflection stack trace would be simmilar
// to something like this:
/*
java.lang.Exception
at package1.b.Dummy.safeMethod(SomeClass.java:38)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
-> at java.lang.reflect.Method.invoke(Method.java:601)
at package1.b.Test.main(SomeClass.java:65)
*/
//5th line marked by "->" is inerresting so I will try to use that info
} catch (Exception e) {
StackTraceElement[] st = e.getStackTrace();
if (st.length > 5
&& st[4].getClassName().equals("java.lang.reflect.Method"))
throw new RuntimeException(
"method safeMethod() is accessible only by Dummy object");
}
// now normal code of method
System.out.println("code of safe method");
}
//I will check if it is possible to normally use that method inside this class
public void trySafeMethod(){
safeMethod();
}
Dummy() {
safeMethod();
}
}
class Dummy1 extends Dummy {}
class Test {
public static void main(String[] args) throws Exception {
Dummy1 d1 = new Dummy1();//safeMethod can be invoked inside superclass constructor
d1.trySafeMethod();//safeMethod can be invoked inside other Dummy class methods
System.out.println("-------------------");
//Lets check if it is possible to invoke it via reflection
Method m2 = Dummy.class.getDeclaredMethod("safeMethod");
// m.invoke(d);//exception java.lang.IllegalAccessException
m2.setAccessible(true);
m2.invoke(d1);
}
}
Output from Test main method :
code of safe method
code of safe method
-------------------
Exception in thread "main" java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:601)
at package1.b.Test.main(MyClass2.java:87)
Caused by: java.lang.RuntimeException: method safeMethod() is accessible only by Dummy object
at package1.b.Dummy.safeMethod(MyClass2.java:54)
... 5 more