parsing - Is there a general purpose parser for Java bytecode? -
I am trying to algorithm a classification on a feature set received from JAR files. I want to separate the JR file, from which to make text corpus, from which I can remove the facilities to pass the classifier.
The problem is, there is a lot of things in Java bytecode (I am using JavaCV) which I do not care, which can be the result of useless features.
Is there a available parser I can use for Java bytecode which can get rid of syntax characters?
. It is fast, light weight and well documented.
It comes with a generator which allows to create code that will be required to build a bytecode with ASM for a certain category file.
Comments
Post a Comment