I'd like to be able to examine the contents of a JAR file without having to install Winzip or some other tool and without having to rename the file. Windows Explorer can open ZIP files just fine; is there some registry setting I can use to let it treat JARs like ZIPs?

link|improve this question
i wonder why this was migrated. why would anyone but a programmer be interested in this. – Jeff Martin Mar 22 '10 at 17:45
feedback

migrated from stackoverflow.com Mar 18 '10 at 21:01

This question came from our site for professional and enthusiast programmers.

5 Answers

up vote 26 down vote accepted

Or from the command line:

assoc .jar=CompressedFolder
link|improve this answer
1  
NB: for Vista and above, you'll probably need to run the command prompt with elevated privileges i.e. as Administrator. – Mal Ross May 25 '10 at 12:45
feedback

I tried exporting HKEY_CLASSES_ROOT\.zip, changing all references of '.zip' to '.jar' and importing it to HKEY_CLASSES_ROOT\.jar.

Under Vista at least it let me open a .jar file as if it were a .zip.

link|improve this answer
feedback

What you need to do is associate the JAR extension in Windows Explorer with Compressed folders. From Windows Explorer select tools / Folder Options. Then the Files Types tab. Select New and associate JAR Compressed (ZIP) Folder.

link|improve this answer
feedback

The HKEY_CLASSES_ROOT trick doesnt work under Windows 7. There mut be some compelling reason that MSFT doesnt want us to do this.

link|improve this answer
Worked fine for me under Windows 7. – Brannon Nov 30 '09 at 4:29
feedback

The command line approached worked for me on win 7. I ran the command in an elevated prompt, but I don't know if that was necessary.

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.