Working on .jar files
Extract content of a .jar file
jar x /path/to/jar/fileWorking on .class files
To list the content of a .class file:
javap classnameGive here the class name not the file name.
Extract content of a .jar file
jar x /path/to/jar/fileTo list the content of a .class file:
javap classnameGive here the class name not the file name.