Deployment Flashcards

1
Q

JAR file

A

Java Archive

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly