I am searching for the best tools for obfuscating a given java source code.
Who can recommend me a tool?
Tobias
>I am searching for the best tools for obfuscating a given java source code.
see http://mindprod.com/jgloss/obfuscator.html

Signature
Canadian Mind Products, Roedy Green.
Coaching, problem solving, economical contract programming.
See http://mindprod.com/jgloss/jgloss.html for The Java Glossary.
> I am searching for the best tools for obfuscating a given java source code.
>
> Who can recommend me a tool?
I have no experience to lend, but the two most commonly mentioned names
I see are RetroGuard and DashO.

Signature
www.designacourse.com
The Easiest Way to Train Anyone... Anywhere.
Chris Smith - Lead Software Developer/Technical Trainer
MindIQ Corporation
> I am searching for the best tools for obfuscating a given java source code.
try this http://www.zelix.com/klassmaster/

Signature
Andrei Kouznetsov
http://uio.dev.java.net Unified I/O for Java
http://reader.imagero.com Java image reader
> I am searching for the best tools for obfuscating a given java source code.
>
> Who can recommend me a tool?
I don't think there is the "best" obfuscating tool, for anyway, the code
will still decompilable. Now if you want to give a pain in the ..... to the
person who will decompile, there are two well-known free products:
- Retroguard
- Proguard
I personnally use proguard, as it looks to create smaller classes, and
optimize quite well unused code and classes ( I use it for J2ME
development).
--
JScoobyCed
Boniface Frederic - 13 Jul 2004 12:57 GMT
> I personnally use proguard, as it looks to create smaller classes, and
> optimize quite well unused code and classes ( I use it for J2ME
> development).
> --
> JScoobyCed
Is it possible to encrypt string constants with proguard ?
Fred.
iamfractal@hotmail.com - 15 Jul 2004 20:46 GMT
> > I am searching for the best tools for obfuscating a given java source
> code.
[quoted text clipped - 4 lines]
> optimize quite well unused code and classes ( I use it for J2ME
> development).
I use proguard too. Let's hear it for well-written tools that do what they claim.
.ed
www.EdmundKirwan.com - Home of The Fractal Class Composition
half my students
> I am searching for the best tools for obfuscating a given java source code.
>
> Who can recommend me a tool?
>
> Tobias