Is there any Java bytecode for the Eclipse AST parser?

Can you recommend any library that represents Java bytecode as Eclipse Java AST (i.e. with nodes descending from org.eclipse.jdt.core.dom.ASTNode)?

+3
source share
1 answer

You are looking for a decompiler and a way to turn this AST tool into an Eclipse AST view.

The Java Decompiler has an Eclipse plugin to recreate the source code. You can analyze this with Eclipse ASTParserto get the AST you need (or maybe you just need the source code).

Biggegst, , - ( - obfuscation , ). ? Eclipse ASTParser? YMMV.

Java, /, -, . Java Decompiler , eclipse .

+2

Source: https://habr.com/ru/post/1764404/


All Articles