How to resolve the error "java.lang.reflect.InvocationTargetException"

Normally "java.lang.reflect.InvocationTargetException" occurs when java compiler finds 2 different classes with same name in 2 different packages. when u r importing both classes at a time and when you r trying to create object of that class it throws "java.lang.reflect.InvocationTargetException" exception .

The solution is that when you are creating the object of the class use package name also along with class name so that compiler knows what class it has to use.

你可能感兴趣的:(java)