can anyone tell me how to protect .class file from decompiling by any decompiler which r on the web.actually i have created a project and converted it into .jar format, but there is a chance to decompress it to get all the .class and then decompile it, so how can we protect .class files. thanx in advance
Frederick Clark
Greenhorn
Joined: Mar 12, 2003
Posts: 8
posted
0
Dear Friend, the only way I know to do that in java is trough "native method". You must implement the methods you create in java, those that you don't want to be uncompiled, in another compiled native language like c or c++, to make a DLL. Use the javah tool to make a header file to interface the java code and the DLL. But have a question. Why do you want protect your code from uncompiling? You should be benign with other programmers that doesn't know how to do make some things. Well, good look in your project
Smart2006 recoded 2003
Gopi Balaji
Ranch Hand
Joined: Jan 23, 2003
Posts: 84
posted
0
Hassan, Search for "obfuscators" in the Net. These could help you. They certainly do not prevent decompiling your class files, but, they obfuscate enough to make the decompiled code almost unreadable. -GB.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: protecting .class file from decompilation