码迷,mamicode.com
首页 > 编程语言 > 详细

javassist:增强型的java反射工具,获取方法参数名

时间:2015-08-13 23:53:06      阅读:622      评论:0      收藏:0      [点我收藏+]

标签:

java的反射是不能获取方法的参数名的。比如:

[java] view plaincopyprint?

  1. public String concatString(String str1,String str2){  

  2.     return str1+str2;  

  3. }  

    public String concatString(String str1,String str2){
        return str1+str2;
    }

想获取"str1",和"str1"这个参数名,使用JDK自带的反射是不行的。但是我们借助第三方包 javaassist 就可以获得。

[java] view plaincopyprint?

  1. public static void main(String[] args) {  

  2.     Class clazz = TestJavaAssist.class;  

  3.     try {  

  4.         ClassPool pool = ClassPool.getDefault();  

  5.         CtClass cc = pool.get(clazz.getName());  

  6.         CtMethod cm = cc.getDeclaredMethod("concatString");  

  7.   

  8.         // 使用javaassist的反射方法获取方法的参数名  

  9.         MethodInfo methodInfo = cm.getMethodInfo();  

  10.         CodeAttribute codeAttribute = methodInfo.getCodeAttribute();  

  11.         LocalVariableAttribute attr = (LocalVariableAttribute) codeAttribute.getAttribute(LocalVariableAttribute.tag);  

  12.         if (attr == null) {  

  13.             // exception  

  14.         }  

  15.         String[] paramNames = new String[cm.getParameterTypes().length];  

  16.         int pos = Modifier.isStatic(cm.getModifiers()) ? 0 : 1;  

  17.         for (int i = 0; i < paramNames.length; i++)  

  18.             paramNames[i] = attr.variableName(i + pos);  

  19.         // paramNames即参数名  

  20.         for (int i = 0; i < paramNames.length; i++) {  

  21.             System.out.println(paramNames[i]);  

  22.         }  

  23.   

  24.     } catch (NotFoundException e) {  

  25.         e.printStackTrace();  

  26.     }  

  27. }  

public static void main(String[] args) {
		Class clazz = TestJavaAssist.class;
		try {
			ClassPool pool = ClassPool.getDefault();
			CtClass cc = pool.get(clazz.getName());
			CtMethod cm = cc.getDeclaredMethod("concatString");

			// 使用javaassist的反射方法获取方法的参数名
			MethodInfo methodInfo = cm.getMethodInfo();
			CodeAttribute codeAttribute = methodInfo.getCodeAttribute();
			LocalVariableAttribute attr = (LocalVariableAttribute) codeAttribute.getAttribute(LocalVariableAttribute.tag);
			if (attr == null) {
				// exception
			}
			String[] paramNames = new String[cm.getParameterTypes().length];
			int pos = Modifier.isStatic(cm.getModifiers()) ? 0 : 1;
			for (int i = 0; i < paramNames.length; i++)
				paramNames[i] = attr.variableName(i + pos);
			// paramNames即参数名
			for (int i = 0; i < paramNames.length; i++) {
				System.out.println(paramNames[i]);
			}

		} catch (NotFoundException e) {
			e.printStackTrace();
		}
	}

javassist:增强型的java反射工具,获取方法参数名

标签:

原文地址:http://my.oschina.net/sniperLi/blog/492057

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!