问候我想阅读我尝试使用java代理和java代理进行字节码操作的方法的数据。 原因是我的程序(webApplication)不能工作(javassist.CannotCompileException: [source error] ) is missing what is this?) 目前没有人可以帮助我。 所以我想不知道我的Methode里面是什么东西可能产生了一个bug ...所以我想知道我是否可以阅读和打印CtMethod的内容
我的代码
private byte[] transformClass(Class classToTransform, byte[] b, String className) {
if (className.startsWith("de/example")) {
ClassPool pool = ClassPool.getDefault();
CtClass cl = null;
try {
cl = pool.makeClass(new ByteArrayInputStream(b));
} catch (IOException e) {
e.printStackTrace();
}
try {
assert cl != null;
for (CtMethod ctMethod : cl.getMethods()) {
changeMethod(ctMethod);
System.out.println(ctMethod.getMethodInfo());
System.out.println(ctMethod.getMethodInfo2());
}
b = cl.toBytecode();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (cl != null) {
cl.detach();
}
}
}
return b;
}
private void changeMethod(CtMethod method) throws NotFoundException, CannotCompileException {
if (method.hasAnnotation(Loggable.class)) {
System.out.println(method.getMethodInfo());
System.out.println(method.getMethodInfo2());
method.insertBefore(" startTime = 0;\n" +
" startTime = System.currentTimeMillis();\n" +
" final de.example.webservice.ws.TestFolder.Logging threadLogger = de.example.webservice.ws.TestFolder.Logging.getInstance();\n" +
" Thread thread1 = new Thread(new Runnable(){\n" +
" @Override\n" +
" public void run() {\n" +
" threadLogger.info(\"Testlog\");\n" +
" try {\n" +
" threadLogger.logCall(Webservice.this.getClass().getMethod(\"startThread0\"),\"Thread\");\n" +
" } catch (Exception e) {\n" +
" e.printStackTrace();\n" +
" }\n" +
" }\n" +
" });\n" +
" thread1.start();");
}
}
我只是google上的方法,可以从.txt文件等文件中读取数据,但这对我的问题并不有用。
答案 0 :(得分:2)
如果您正在尝试阅读该方法的原始来源,那么javassist并不能真正做到这一点。你需要一个java字节码反编译器。谷歌的那个词。 jad 是个好人。