The getMethod() is used to get public method in java. It takes method name and parameter types of the method.
Example
TestClass.java
package com.w3spoint; public class TestClass { public void display(String message){ System.out.println(message); } } |
ReflectionTest.java
package com.w3spoint; import java.lang.reflect.Method; public class ReflectionTest { public static void main(String args[]){ try { Class c=Class.forName("com.w3spoint.TestClass"); Method method = c.getMethod("display", String.class); System.out.println(method.getName()); } catch (Exception e) { e.printStackTrace(); } } } |
Output
display |