Deployment Flashcards
1
Q
JAR file
A
Java Archive
2
Q
JAR file
A
Java Archive
- like a zipped file
- a package file format typically used to aggregate many Java class files and associated metadata and resources (text, images, etc.) into one file to distribute application software or libraries on the Java platform
3
Q
How to view the contents of a JAR file?
A
jar tf jar-file
- t option indicates that you want to view the table of contents of the JAR file
- f option indicates that the JAR file whose contents are to be viewed is specified on the command line