|
|
Re: Converting .class files to .java files
|
Posted: May 29, 2006 11:03 PM
|
|
The key word is 'obfuscating'.
There are obfuscators which during or after compiling (I don't know, didn't try it yet) rename all of your method names and variables. Also, they insert sensless code which does not influcence the execution of the program, but makes it very difficult to read the code. If you use hard coded Strings, don't write them directly in the source code, but create them through methods or something.
I don't know how much it helps, but there are also some tools which create a .exe file for your program. Most tools support integrating the JAR file into the .exe file, so if someone wants to decompile it, he has first to disasemble the .exe file.
|
|