About 11,500,000 results
Open links in new tab
  1. java - Extracting .jar file with command line - Stack Overflow

    Dec 10, 2011 · Java has a class specifically for zip files and one even more specifically for Jar Files. java.util.jar.JarOutputStream java.util.jar.JarInputStream using those you could, on a …

  2. java - The simplest way to create a jar file? - Stack Overflow

    Jul 8, 2014 · I have a Java project and need to create a jar file for it. What is the simplest way to do this?

  3. java - What exactly does a jar file contain? - Stack Overflow

    A jar file is basically a zip file containing .class files and potentially other resources (and metadata about the jar itself). It's hard to compare C to Java really, as Java byte code maintains a lot …

  4. how to check the version of jar file? - Stack Overflow

    Oct 31, 2017 · Because finding version number associated with a given jar is like one to one function. Only one version number for one jar file. But finding which version of jar was used at …

  5. How can I add local JAR files to a Maven project? - Stack Overflow

    How do I add local JAR files (not yet part of the Maven repository) directly in my project's library sources?

  6. java - How to list dependencies of a JAR - Stack Overflow

    JarAnalyzer: a dependency management utility for jar files. It's primary purpose is to traverse through a directory, parse each of the jar files in that directory, and identify the dependencies …

  7. java - Extract source code from .jar file - Stack Overflow

    Feb 24, 2011 · Is there a way to extract the source code from an executable .jar file (Java ME)?

  8. Controlling Maven final name of jar artifact - Stack Overflow

    I'm trying to define a property in our super pom which will be used by all child projects as the destination of the generated artifact. For this I was thinking about using project/build/finalName ...

  9. java - How to decompile a whole Jar file? - Stack Overflow

    Does anyone know of a free decompiler that can decompile an entire Jar file instead of a single class? I have a problem with sub classes like name$1.class name$2.class name.class

  10. How to create jar file with package structure? - Stack Overflow

    23 You want $ jar cvf asd.jar . to specify the directory (e.g. .) to jar from. That will maintain your folder structure within the jar file.