Java 8 has the ability to acquire method parameter names using Reflection API.
How can I get these method parameter names?
As per my knowledge, class files do not store formal parameter names. How can I get these using reflection?
How can i get these method parameter names?
Basically, you need to:
Class
Class
, get a reference to a Method
by calling getDeclaredMethod()
or getDeclaredMethods()
which returns references to Method
objectsMethod
object, call (new as of Java 8) getParameters()
which returns an array of Parameter
objectsParameter
object, call getName()
Class<String> clz = String.class; for (Method m : clz.getDeclaredMethods()) { System.err.println(m.getName()); for (Parameter p : m.getParameters()) { System.err.println(" " + p.getName()); } }
Output:
... indexOf arg0 indexOf arg0 arg1 ...
Also as per my knowledge .class files do not store formal parameter. Then how can i get them using reflection?
See the javadoc for Parameter.getName()
:
... If the parameter's name is present, then this method returns the name provided by the class file. Otherwise, this method synthesizes a name of the form argN, where N is the index of the parameter in the descriptor of the method which declares the parameter.
Whether a JDK supports this, is implementation specific (as you can see form the above output, build 125 of JDK 8 does not support it). The class file format supports optional attributes which can be used by a specific JVM/javac implementation and which are ignored by other implementations which do not support it.
Note that you could even generate the above output with arg0
, arg1
, ... with pre Java 8 JVMs - all you need to know is the parameter count which is accessible through Method.getParameterTypes()
:
Class<String> clz = String.class; for (Method m : clz.getDeclaredMethods()) { System.err.println(m.getName()); int paramCount = m.getParameterTypes().length; for (int i = 0; i < paramCount; i++) { System.err.println(" arg" + i); } }
What is new with JDK 8 is that there is an extended API and the possibility for JVMs to provide the real parameter names instead of arg0
, arg1
, ...
Supporting such optional features is possible through optional attributes which can be attached to the various class file structures. See 4.6. Methods for the method_info
structure within a class file. See also 4.7.1. Defining and Naming New Attributes in the JVM spec.
Since with JDK 8, the class file version will be incremented to 52, it would also be possible to change the file format itself to support this feature.
See also JEP 118: Access to Parameter Names at Runtime for more information and implementation alternatives. The proposed implementation model is to add an optional attribute which stores the parameter names. Since the class file format already supports these optional attributes, this would even be possible in a way so that the class files can still be used by older JVMs, where they are simply ignored as demanded by the spec:
Java Virtual Machine implementations are required to silently ignore attributes they do not recognize.
Update
As suggested by @assylias, the source needs to be compiled with the javac
command line option -parameters
in order to add the meta data for parameter name reflection to the class file. However, this will of course only affect code compiled with this option - the code above will still print arg0
, arg1
etc. since the runtime libraries are not be compiled with this flag and hence do not contain the necessary entries in the class files.
Thanks Andreas, but finally i got the complete solution from oracle Tutorials on Method Parameters
It says,
You can obtain the names of the formal parameters of any method or constructor with the method java.lang.reflect.Executable.getParameters. (The classes Method and Constructor extend the class Executable and therefore inherit the method Executable.getParameters.) However, .class files do not store formal parameter names by default. This is because many tools that produce and consume class files may not expect the larger static and dynamic footprint of .class files that contain parameter names. In particular, these tools would have to handle larger .class files, and the Java Virtual Machine (JVM) would use more memory. In addition, some parameter names, such as secret or password, may expose information about security-sensitive methods.
To store formal parameter names in a particular .class file, and thus enable the Reflection API to retrieve formal parameter names, compile the source file with the -parameters option to the javac compiler.
Remember to compile the with the -parameters compiler option
java MethodParameterSpy ExampleMethods
This command prints the following:
Number of constructors: 1 Constructor #1 public ExampleMethods() Number of declared constructors: 1 Declared constructor #1 public ExampleMethods() Number of methods: 4 Method #1 public boolean ExampleMethods.simpleMethod(java.lang.String,int) Return type: boolean Generic return type: boolean Parameter class: class java.lang.String Parameter name: stringParam Modifiers: 0 Is implicit?: false Is name present?: true Is synthetic?: false Parameter class: int Parameter name: intParam Modifiers: 0 Is implicit?: false Is name present?: true Is synthetic?: false Method #2 public int ExampleMethods.varArgsMethod(java.lang.String...) Return type: int Generic return type: int Parameter class: class [Ljava.lang.String; Parameter name: manyStrings Modifiers: 0 Is implicit?: false Is name present?: true Is synthetic?: false Method #3 public boolean ExampleMethods.methodWithList(java.util.List<java.lang.String>) Return type: boolean Generic return type: boolean Parameter class: interface java.util.List Parameter name: listParam Modifiers: 0 Is implicit?: false Is name present?: true Is synthetic?: false Method #4 public <T> void ExampleMethods.genericMethod(T[],java.util.Collection<T>) Return type: void Generic return type: void Parameter class: class [Ljava.lang.Object; Parameter name: a Modifiers: 0 Is implicit?: false Is name present?: true Is synthetic?: false Parameter class: interface java.util.Collection Parameter name: c Modifiers: 0 Is implicit?: false Is name present?: true Is synthetic?: false
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With