-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No support for .war files or single .class files #24
Comments
At least for that part, you can use my fork. It has that rather simple change. Instead of the output path, you supply the class name and it will return the decompiled code on stdout. |
Not able to download native-lib Following exception: |
First of all: Nice one, I like the tool.
I'm actually using this as one option for Java decompilation in https://github.com/floyd-fuh/crass
It seems the tool does not support .war files, although it's exactly the same as a .jar file and JD-GUI supports it too. As soon as I rename the .war file to .jar, everything works fine.
Additionally it would be very nice if this tool would support single class files.
How about if it would just check for the file extension of the input file and compare it to .class and if it's not .class it would treat it as a .jar file? Or a command line option would be fine as well.
The text was updated successfully, but these errors were encountered: