java decoder?

2008-02-18 Thread Gary Kline
Guys, I doubt this but is there anything that will take a foo.jar and turn in back into java? Or at least assembler? gary -- Gary Kline [EMAIL PROTECTED] www.thought.org Public Service Unix http://jottings.thought.org http://transfinite.thought.org

Re: java decoder?

2008-02-18 Thread Jim Bow
Gary Kline wrote: I doubt this but is there anything that will take a foo.jar and turn in back into java? Or at least assembler? This really isn't the place for such questions. As to the question itself, Im no java man, but I think a jar is an archive of classes, meaning you can extract

Re: java decoder?

2008-02-18 Thread Paul A. Procacci
Gary Kline wrote: Guys, I doubt this but is there anything that will take a foo.jar and turn in back into java? Or at least assembler? gary http://java.sun.com/developer/Books/javaprogramming/JAR/basics/ I went to google and typed: 'unpack jar'. There are many other results that

Re: java decoder?

2008-02-18 Thread Giorgos Keramidas
On 2008-02-18 17:33, Gary Kline [EMAIL PROTECTED] wrote: Guys, I doubt this but is there anything that will take a foo.jar and turn in back into java? Or at least assembler? JAR files are usually ZIP archives [1], so you can extract them easily with archivers/unzip or similar tools. [1] But

Re: java decoder?

2008-02-18 Thread Joe Marcus Clarke
On Mon, 2008-02-18 at 17:33 -0800, Gary Kline wrote: Guys, I doubt this but is there anything that will take a foo.jar and turn in back into java? Or at least assembler? A jar is an archive which contains multiple Java class files. So you will need to extract the class files first