Pages (3):    1 2 3   
Bigger   10-11-2014, 09:36 PM
#11
Fucking hawt.
Konloch   10-11-2014, 09:59 PM
#12
(10-11-2014, 09:36 PM)Nigger Wrote: Fucking hawt.

Glad you like it! :D 
Konloch   10-11-2014, 11:19 PM
#13
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.
Konloch   10-15-2014, 08:15 AM
#14
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.
Konloch   10-15-2014, 11:37 AM
#15
updated op
firusvg   10-20-2014, 07:07 AM
#16
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");
This post was last modified: 10-20-2014, 07:08 AM by firusvg. Edit Reason: typos
Konloch   10-20-2014, 11:15 AM
#17
(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.

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");

Cheers, sorry about that, I'll go fix that and push an update.
Konloch   10-20-2014, 02:09 PM
#18
Pushed 1.1 and 1.2 today, 1.1 fixes the file separator issue, 1.2 adds 2 more Java decompilers (Procyon and CFR).
mibbzz   10-21-2014, 06:17 AM
#19
(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).

Hot, will check it out.


Also on a side note do smilies work, I attempted to use the amazing high five one and nothing happened.
Konloch   10-21-2014, 07:24 PM
#20
(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).

Hot, will check it out.


Also on a side note do smilies work, I attempted to use the amazing high five one and nothing happened.

Shadehappy yes
Pages (3):    1 2 3   
  
Users browsing this thread: 1 Guest(s)
Konloch Software - Bytecode Viewer - Reverse Engineering Forum
Copyright © 2014-2025 The Bytecode Club. Powered By MyBB.
CC0 Unless Specified Otherwise.