I want to get the byte code for a java method signature given MethodDeclaration object. I'm parsing the java class using Eclipse jdt and iterating over the MethodDeclaration like the following:
private static void processJavaFile(String javaFilePath) {
List<MethodDeclaration> methodDeclarations = new ArrayList<MethodDeclaration>();
FileInputStream reader = null;
try {
File javaFile = new File(javaFilePath);
reader = new FileInputStream(javaFile);
byte[] bs = new byte[reader.available()];
reader.read(bs, 0, reader.available());
String javaContent = new String(bs);
CompilationUnit unit = ASTUtil.getCompilationUnit(javaContent, 4);
MethodVisitor methodVisitor = new MethodVisitor();
unit.accept(methodVisitor);
methodDeclarations = methodVisitor.getMethods();
for (MethodDeclaration methodDeclaration :methodDeclarations){
////////////////////////////////////////////////////////////////////////
// ???? I want to get the byte code of the method signature here ???? //
////////////////////////////////////////////////////////////////////////
}
} catch (Exception e) {
e.printStackTrace();
}
}