我想使用Java反射API来获取名称方法参数,使用java.lang.reflect.Parameter.getName()
。
-parameters
标志,我可以为使用Sun的javac
编译器编译的代码实现这一点,如下所示:
$> javac
Usage: javac <options> <source files>
where possible options include:
...
-parameters Generate metadata for reflection on method parameters
...
但是,我在eclipse中找不到任何匹配的选项,可以将这些名称添加到编译的字节码中。
因此,在Eclipse中参数名称被替换为arg0
, arg1
,…
下面说明了这个问题,声明的输出来自Eclipse中的debug/run:
public class Example {
public static void main(String[] theseAreMyCliArgs) {
// Ouptut [java.lang.String[] arg1]
// Should yield [java.lang.String[] theseAreMyCliArgs]
System.out.println(Arrays.toString(Example.class.getMethods()[0].getParameters()));
}
}
我不确定早期版本,但Eclipse Luna(4.4)在Java->Compiler->Store information about method parameters
中有这个选项。它只适用于java 1.8类文件版本。
您可以在项目首选项中设置它,以将此附加元数据限制为选定的项目。