Instantiate unknown class at runtime and call the object's methods : Object « Reflection « Java






Instantiate unknown class at runtime and call the object's methods

 
import java.lang.reflect.Method;

public class Main {
  public static void main(String[] args) throws Exception {
    Class myclass = Class.forName("java.lang.String");

    Method[] methods = myclass.getMethods();
    //Object object = myclass.newInstance();

    for (int i = 0; i < methods.length; i++) {
      System.out.println(methods[i].getName());
      //System.out.println(methods[i].invoke(object));
    }
  }
}
/*
hashCode
compareTo
compareTo
indexOf
indexOf
indexOf
indexOf
equals
toString
charAt
codePointAt
codePointBefore
codePointCount
compareToIgnoreCase
concat
contains
contentEquals
contentEquals
copyValueOf
copyValueOf
endsWith
equalsIgnoreCase
format
format
getBytes
getBytes
getBytes
getBytes
getChars
intern
isEmpty
lastIndexOf
lastIndexOf
lastIndexOf
lastIndexOf
length
matches
offsetByCodePoints
regionMatches
regionMatches
replace
replace
replaceAll
replaceFirst
split
split
startsWith
startsWith
subSequence
substring
substring
toCharArray
toLowerCase
toLowerCase
toUpperCase
toUpperCase
trim
valueOf
valueOf
valueOf
valueOf
valueOf
valueOf
valueOf
valueOf
valueOf
getClass
wait
wait
wait
notify
notifyAll

*/

   
  








Related examples in the same category

1.Create an object from a string
2.Determine the Superclass of an Object
3.Obtain from where a Class is loaded
4.Find the Package of an Object
5.Get the class By way of an object
6.Get the fully-qualified name of a class
7.Get the fully-qualified name of a inner class
8.Get the unqualified name of a class
9.Get the name of a primitive type
10.Get the name of an array
11.Get the name of void
12.Getting the Superclass of a Class Object
13.For the primitive tipe the interface will be an empty array
14.If a class object is an interface or a class
15.Using Reflection to browse a java class