12

What is the best way to browse the contents of a jar file on the Mac platform?

I usually use unzip foo.jar -d foo, but this is too slow with uber-jars.

Franck Dernoncourt
  • 24,246
  • 64
  • 231
  • 400

4 Answers4

3

The Better Zip Quicklook Generator allows you to have a quick peek into jar archives. I like that for quick browsing in the finder. Currently it is free.

jbandi
  • 139
1

vim filename.jar

will browse file content in vim browser. If you does not have installed vim - you can use vi

-1

I can recommend Archive Browser Intellij Plugin for that

asgarov1
  • 99
  • 2
-1

I think you could install a IDE like eclipse or netbeans on ur Mac platform. These IDE tools will help you access the content of jar files easily.

zwang
  • 99