Possible Duplicate:
Can you configure Windows to open JAR files like ZIP files without a 3rd party tool?

How i can view the contents of Jar files and enter to it like Zip files on windows 7 , so windows explorer can view these files ?

link|improve this question
feedback

closed as exact duplicate by studiohack Dec 14 '11 at 7:49

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 0 down vote accepted

Try this registry script:

Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Classes\.jar]
@="CompressedFolder"
link|improve this answer
feedback

Open them with 7-zip. If you really want to double click, set it as default program for .jar files.

link|improve this answer
I do it but it gives me an error message "failed to load main-class manifest attribute " when i opens the file – Hamzah khammash Dec 14 '11 at 7:43
-1. This guy wanted Explorer integration. – kinokijuf Dec 14 '11 at 7:44
feedback

Jar (=Java Archive) are just zipped Java class files, so you can use any Zip-Archiver tool to unzip it, for example 7-zip.

It won't bring you much, however, because class files are the files compiled into bytecode, so this is a binary format you cannot easily look in. You can decompile these files using some of existing Java decompilers, for example this one.

link|improve this answer
feedback

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