10-11-2014, 09:36 PM
Fucking hawt.
Java Bytecode Viewer
|
10-11-2014, 09:36 PM
Fucking hawt.
10-11-2014, 09:59 PM
10-11-2014, 11:19 PM
10/11/2014 - Modified the FernFlower library, it no longer spits out System.out.println's while processing a method, this has sped it up quite a lot.
10-15-2014, 08:15 AM
10/14/2014 - Added the option 'exact' to the class finder.
10/14/2014 - Added the option 'exact' to the searcher, now it'll search for .contains when unselected. 10/14/2014 - Stopped the use of StringBuffer, replaced all instances with StringBuilder. 10/14/2014 - Added Labels and Try-Catch blocks to the Bytecode Decompiler.
10-15-2014, 11:37 AM
updated op
10-20-2014, 07:07 AM
(This post was last modified: 10-20-2014, 07:08 AM by firusvg.
Edit Reason: typos
)
Nice utility, but, unfortunately, there is a little bug in decompilation in Linux - FernFlower fails to make source file because of wrong temporary directory name. Backslash is hardcoded and that works correctly in Windows, but in Linux, file separator is forward slash, so, because of hardcoded temporary directory name, we get filename like bcv_temp\temp0.java which FernFlower couldn't handle.
Quick and dirty patch is changing line 132: in BytecodeViewer.java file from: Code: public static String tempDirectory = "bcv_temp\\"; to Code: public static String tempDirectory = "bcv_temp"+System.getProperty("file.separator");
10-20-2014, 11:15 AM
(10-20-2014, 07:07 AM)firusvg Wrote: Nice utility, but, unfortunately, there is a little bug in decompilation in Linux - FernFlower fails to make source file because of wrong temporary directory name. Backslash is hardcoded and that works correctly in Windows, but in Linux, file separator is forward slash, so, because of hardcoded temporary directory name, we get filename like bcv_temp\temp0.java which FernFlower couldn't handle. Cheers, sorry about that, I'll go fix that and push an update.
10-20-2014, 02:09 PM
Pushed 1.1 and 1.2 today, 1.1 fixes the file separator issue, 1.2 adds 2 more Java decompilers (Procyon and CFR).
10-21-2014, 06:17 AM
10-21-2014, 07:24 PM
(10-21-2014, 06:17 AM)mibbzz Wrote:(10-20-2014, 02:09 PM)konloch Wrote: Pushed 1.1 and 1.2 today, 1.1 fixes the file separator issue, 1.2 adds 2 more Java decompilers (Procyon and CFR). yes |
|