About 7,940,000 results
Open links in new tab
  1. java - How to run a JAR file - Stack Overflow

    Dec 4, 2016 · 11 If you don`t want to create a manifest just to run the jar file, you can reference the main-class directly from the command line when you run the jar file. java -jar Predit.jar …

  2. java - Running JAR file on Windows - Stack Overflow

    I have a JAR file named helloworld.jar. In order to run it, I'm executing the following command in a command-line window: java -jar helloworld.jar This works fine, but how do I execute it with dou...

  3. java - Extracting jar to specified directory - Stack Overflow

    Apr 5, 2013 · The following command, jar uf foo.jar -C classes . -C bin xyz.class changes to the classes directory and adds to foo.jar all files within the classes directory (without creating a …

  4. java 'jar' is not recognized as an internal or external command

    Mar 21, 2015 · The jar command in command line is used in order to create a JAR file. For example: jar cf jar-file input-file(s) See more at: Oracle docs If you want to run the existed JAR …

  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. Error fix : Dbeaver driver error : Maven artifact:org.postgresql ...

    Jan 7, 2025 · Downloading Postgres driver file postgresql-42.X.X.jar using the link: https://jdbc.postgresql.org/download/ Put .JAR file into this path (if there's no directory, create …

  7. 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 …

  8. How do I pass parameters to a jar file at the time of execution?

    Jan 19, 2009 · How do I pass parameters to a jar file at the time of execution? Asked 16 years, 9 months ago Modified 5 years, 1 month ago Viewed 296k times

  9. 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)?

  10. java - How can I edit a .jar file? - Stack Overflow

    Aug 2, 2012 · A jar file is a zip archive. You can extract it using 7zip (a great simple tool to open archives). You can also change its extension to zip and use whatever to unzip the file. Now …