user394741
user394741

Reputation: 107

To view the content of .jar file

I do have a .jar file and i need to view the content of the jar files.

  1. Is there any decoder available for decoding the jar file.
  2. I have the solaris environment also and i need to know what is the

Upvotes: 5

Views: 17682

Answers (6)

Ryan
Ryan

Reputation: 28187

Use the jar command line, i.e.

jar tf jarfile.jar

Upvotes: 15

mh.
mh.

Reputation: 658

The "official" utility is called "jar" and should be installed if a Java environment is installed. It is a command line utility that works similar to the UNIX tool "tar".

But as Mick Sear mentioned, "unzip" will also work.

Upvotes: 1

ReNa
ReNa

Reputation: 1124

Just google jd-gui

Hopefully this works for you

Upvotes: 3

Rajesh
Rajesh

Reputation: 53

*.jar are archived files. Try extracting it with an Archiver!(similar to WinRAR on windows)

Upvotes: 1

ICR
ICR

Reputation: 14162

JAR files are packaged as zips, so any tools you use to open zip files should work.

Upvotes: 0

Mick Sear
Mick Sear

Reputation: 1566

unzip it. It's just a zip file.

Upvotes: 10

Related Questions