I need to be able to extract jar files on the command line.

Piece of cake, you might say. Yes, except I need the extractor to rename same-named files. To be specific, the Jar file has a file named:

classAX.class 

and another named:

classax.class

in the same directory. I need it to extract them both, and preferably rename one:

classax (2).class

or something similar.

It must be able to do this without any user intervention.

Winrar has this capability, but when attempting to extract with unrar.exe, it says that the input file is not a valid RAR archive. (Though winrar has jar capabilities.)

Any way to force winrar to accept jars via command line, or perhaps another program?

Thanks,

~Kurt Nauck

link|improve this question

80% accept rate
2  
A jar file is compressed in the zip format. You could write your own extractor using java.util.zip package. – JustinKSU Jun 3 '11 at 20:12
I can appreciate the accuracy of that. I'm looking for a slightly simpler and faster way of dealing with this minor problem. – Kurt Nauck Jun 3 '11 at 20:13
The commad line tool unrar only supports rar format, while the WinRAR GUI can handle zip and several other formats as well. – x4u Jun 3 '11 at 20:15
feedback

2 Answers

You can develop your own programme in java, there is a Zip package that can deal with compressed files, an also you can deal with a rest of your needs

link|improve this answer
That's already been stated. – Kurt Nauck Jun 3 '11 at 20:49
feedback
up vote 0 down vote accepted

7Zip command line util accomplishes this perfectly. Thanks for the answers.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.