Gossamer Forum
Home : General : Perl Programming :

Java -> from .class to .java

Quote Reply
Java -> from .class to .java
Hello,

Do you know if it is possible to view the .java source when we have an .class (applet) ?

I mean "decompile"...

If yes, could you please tell me how to do it.

Thank you very much.
Quote Reply
Re: Java -> from .class to .java In reply to
Not in Perl Wink

There are some bootleg tools to decompile applets to .java files. Try Mocha at

http://www.brouhaha.com/...computers/mocha.html
You might try asking in a Java forum tho as us Perl folk tend to frown on languages that slow the web down as opposed to speed it up.

-- Gordon --


------------------
$blah='82:84:70:77';
print chr($_) foreach (split/:/,$blah);

Quote Reply
Re: Java -> from .class to .java In reply to
I'm going to try it !

Thanks for your help.