logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Create JAR Archive - Package Java Applications | Online Free DevTools by Hexmos

Create JAR archives with JAR. Package Java applications and libraries efficiently for distribution. Free online tool, no registration required. Easily compress files.

jar

Java applications/libraries packager. More information: https://docs.oracle.com/javase/tutorial/deployment/jar/basicsindex.html.

  • Recursively archive all files in the current directory into a .jar file:

jar cf {{file.jar}} *

  • Unzip .jar/.war file to the current directory:

jar -xvf {{file.jar}}

  • List a .jar/.war file content:

jar tf {{path/to/file.jar}}

  • List a .jar/.war file content with verbose output:

jar tvf {{path/to/file.jar}}

See Also