Tagged Questions
JAR file (or Java ARchive) aggregates many files into one. JAR files build on the ZIP file format.
42
votes
10answers
26k views
Is Jad the best java decompiler? [closed]
It hasn't been updated since 2006. Are there better alternatives?
Homepage: http://www.kpdus.com/jad.html
40
votes
11answers
38k views
How to get the path of a running jar file?
My code runs inside a jar file, say foo.jar, and I need to know, in the code, in which folder the running foo.jar is.
So, if foo.jar is in C:\FOO\, I want to get that path no matter what my current ...
37
votes
16answers
7k views
What's the best way to distribute Java applications?
Java is one of my programming languages of choice. I always run into the problem though of distributing my application to end-users.
Giving a user a JAR is not always as user friendly as I would ...
37
votes
8answers
24k views
How should I load Jars dynamically at runtime?
Why is it so hard to do this in Java? If you want to have any kind of module system you need to be able to load jars dynamically. I'm told there's a way of doing it by writing your own ClassLoader, ...
35
votes
13answers
21k views
Java: Easiest way to merge a release into one jar-file
Is there a tool or script which easily merges a bunch of jar-files into one .jar? A bonus would be to easily set the main-file manifest and make it executable.
The concrete case is a java ...
33
votes
6answers
8k views
Create an Android Jar library for distribution
I know of Android Library projects, which allow you to create a shared-source project that can be pulled into Android Applications as needed. However, that requires that source be available.
I'm ...
32
votes
10answers
65k views
How to decompile a whole Jar file?
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
28
votes
5answers
27k views
Android Jar libraries
How do you setup a project that can result in a jar library file that can be used for android?
I want to create a custom library across all projects.
Few other questions:
Does it need to be ...
23
votes
9answers
14k views
Clean way to combine multiple jars? Preferably using Ant
I have runtime dependencies on some external jars that I would like to "rejar" into a single jar. These external dependencies are stored in an external_jars directory, and I'd like to be able to not ...
19
votes
3answers
6k views
Finding unused jars used in an eclipse project
Are there any plugins/tools available to go through the classpath of an eclipse project (or workspace) and highlight any unused jars?
18
votes
9answers
8k views
How do I list the files inside a JAR file?
I have this code which reads all the files from a directory.
File textFolder = new File("text_directory");
File [] texFiles = textFolder.listFiles( new FileFilter() {
public ...
18
votes
6answers
3k views
Java library for parsing command-line parameters?
I write a little command-line-application in Java. This application should work with a mix of parameters and commands, a little bit similar to the 'svn'-command.
Examples:
app url command1
app url ...
18
votes
3answers
11k views
Build project into a Jar Automatically in eclipse
I have an eclipse project where I want to keep my java project built into a Jar automatically. I know I have an option to export the project into a jar; if I do a right click; but what I am really ...
18
votes
5answers
11k views
Creating a jar file from a Scala file
I'm new to Scala and don't know Java. I want to create a jar file out of a simple Scala file. So I have my HelloWorld.scala, generate a HelloWorld.jar.
Manifest.mf:
Main-Class: HelloWorld
In the ...
18
votes
11answers
83k views
Running Jar file in Windows
I have a "helloworld.jar" file. For running a JAR file I am using a command-line window and executing the following command:
java -jar helloworld.jar
By using this command I can execute the JAR ...
17
votes
5answers
28k views
How to load a jar file at runtime
I was asked to build a java system that will have the ability to load new code (expantions) while running.
How do I re-load a jar file while my code is running? or how do I load a new jar?
...
16
votes
3answers
295 views
What's the point of signing code, like jars?
What is the point of signing your code like Java's jars when everyone can do it with jarsigner?
How does it provide security?
16
votes
2answers
927 views
Applet served by Java Web Start, resources requested to WEB Server before look in the JAR files
I am new here and I apologize for my bad English.
I have a little problem with an Applet class served by Java Web Start technology. I have some platform dependent JAR files which Web Start download ...
16
votes
5answers
21k views
What causes java.lang.IncompatibleClassChangeError?
For some reason our java library that we package as a jar is throwing all of these java.lang.IncompatibleClassChangeError when we try to invoke methods from it. It seems to be seemingly random. What ...
16
votes
2answers
10k views
how to make a jar file that include dll files
i bought a third-party java library which include a jar file and two dll files. i wrote my own java program which invoke the third-party jar file. now my question is how can i package all my code ...
16
votes
7answers
44k views
Eclipse: How to build an executable jar with external jar?
I am trying to build an executable jar program which depends on external jar downloaded. In my project, I included them in the build path and can be run and debug within eclipse.
When I tried to ...
16
votes
6answers
6k views
Classloader issues - How to determine which library versions (jar-files) are loaded
I've just solved another I-though-I-was-using-this-version-of-a-library-but-apparently-my-app-server-has-already-loaded-an-older-version-of-this-library-issue (sigh).
Does anybody know a good way to ...
15
votes
4answers
4k views
Create cross platform Java SWT Application
I have written a Java GUI using SWT. I package the application using an ANT script (fragment below).
<jar destfile="./build/jars/swtgui.jar" filesetmanifest="mergewithoutmain">
...
14
votes
6answers
88k views
Why it's failed to load main-class manifest attribute from jar-file?
I have created a jar file in this way jar cf jar-file input-files. Now I try to run it. This does not work: jre -cp app.jar MainClass (jre command is not found). This java -jar main.jar also does not ...
14
votes
5answers
10k views
How to build jars from IntelliJ properly?
I have a project that contains a single module, and some dependencies.
I'd like to create a jar, in a separate directory, that contains the compiled module. In addition, I'd like to have the ...
13
votes
3answers
14k views
Maven - how can I add an arbitrary classpath entry to a jar?
I have an unusual situation where I need to add an arbitrary classpath entry (that points to a jar file) into the manifest of an executable jar. (This is for a Swing desktop application.)
The ...
13
votes
4answers
3k views
How to detect duplicate JARs in the classpath?
Does anyone have code to detect duplicate JARs in the classpath?
Background: When there are two versions of the same JAR in the classpath, really strange things can happen. This can even happen when ...
13
votes
5answers
15k views
What jar should I include to use javax.persistence package in a hibernate based application?
Is it ok to take it from Glassfish project ( glassfish-persistence-api) or may be there is a Hibernate jar?
12
votes
4answers
2k views
How to bundle a native library and a JNI library inside a JAR?
The library in question is Tokyo Cabinet.
I want is to have the native library, JNI library, and all Java API classes in one JAR file to avoid redistribution headaches.
There seems to be an attempt ...
12
votes
4answers
273 views
What happens when two Java frameworks need third one but each of the two need different version of third one?
In my Java project I'm using two different frameworks (let's say A.jar and B.jar) and both of them require one common framework (let's say Log4j.jar) but in two different versions. How it is treated ...
12
votes
7answers
2k views
What's the best way to share JARs across multiple projects?
When you have multiple projects that all use the same set of JAR libraries, it's tedious to include the same JARs over and over again with each project. If I'm working on 20 different projects, I'd ...
11
votes
6answers
743 views
How can I write a Java application that can update itself at runtime?
I would like to implement a java application (server application) that can download a new version (.jar file) from a given url, and then update itself at runtime.
What is the best way to do this and ...
11
votes
1answer
3k views
java.net maven repo - JMS artifact missing
I just created a new Maven project using the default archetype and added the following dependency to my POM file.
<dependencies>
<dependency>
...
11
votes
1answer
1k views
Packaging and Deploying Scala Applications
What is the simplest way to package a Scala application for use on a desktop PC? I'm guessing that would be in the form of a jar file.
At the moment I'm using SBT to compile and run programs
I'd be ...
11
votes
7answers
11k views
JAX-WS Loading WSDL from jar
I'm writing a fat client that makes use of a SOAP service for some features (bug reporting etc.)
I've got JAX-WS working fine, but by default (in netbeans at least) it fetches the WSDL from the ...
11
votes
6answers
30k views
How do I read a resource file from a Java jar file?
I'm trying to access an XML file within a jar file, from a separate jar that's running as a desktop application. I can get the URL to the file I need, but when I pass that to a FileReader (as a ...
11
votes
4answers
19k views
NoClassDefFoundError while trying to run my jar with java.exe -jar…what's wrong?
I have an application that I'm trying to wrap into a jar for easier deployment. The application compiles and runs fine (in a Windows cmd window) when run as a set of classes reachable from the ...
10
votes
7answers
5k views
What version of javac built my jar?
How can I tell what version of the Java compiler was used to build a jar? I have a jar file, and it could have been built in any one of three JDKs. We need to know exactly which one, so we can ...
10
votes
2answers
2k views
running scala apps with java -jar
Yo dawgs,
I got some problems with the java. Check it out.
sebastian@sebastian-desktop:~/scaaaaaaaaala$ java -cp ...
10
votes
5answers
1k views
Gradle: Make a 3rd party jar available to local gradle repository
currently, I'm testing Gradle as an alternative to Maven. In my projects, there are some 3rd party jars, which aren't available in any (Maven) repositories. My problem is now, how could I manage it to ...
10
votes
3answers
5k views
Creating a bundle jar with ant
I'm using Ant to build some Java projects.
In some, I've got a lib/ directory, which contains external dependencies, in the form on JAR files.
During the build, I create a bundled jar, that contains ...
10
votes
4answers
2k views
Java Classloader - how to reference different versions of a jar
This is a common problem. I'm using 2 libraries A.jar and B.jar and these depend on different versions of the same jar.
Let's say that at runtime I need THIS.x.x.x.jar
MY.jar
-> A.jar ...
10
votes
11answers
7k views
Find a jar file given the class name?
This must be a very basic question for Java developers, but what is the best way to find the appropriate jar file given a class name?
For example, given "com.ibm.websphere.security.auth.WSSubject", ...
10
votes
11answers
2k views
Is it possible to package all the jar dependencies in one big jar?
I know this isn't "best practice", but can I include all of the dependencies in one big jar?
10
votes
4answers
3k views
make a refresh on a eclipse project with ant
we have some ant script for building the different jar we use, in several eclipse projects. ( there is some interdependancie )
At the and of the build, we have to refesh some of the eclipse project ...
10
votes
4answers
2k views
Why should I sign my JAR files?
Why should I sign my JAR files?
I know that I need to sign my client-side JAR files (containing Applets) so that special things like filesystem access can be done, and so that the annoying bit at the ...
10
votes
4answers
26k views
Java: problem running a jar file in command line
I'm trying to call a class (main method) from command line (Windows) with Java.
The class imports other classes (other jars).
I always get "class not found exception" from a class that my main ...
10
votes
4answers
11k views
Generate manifest class-path from <classpath> in ant
In the build file below, the jar target refers to the jar.class.path property for the manifest class-path. The compile target refers to project.class.path
There is redundancy here, because ...
10
votes
5answers
4k views
How To Check Dependencies Between Jar Files?
This is my first Q here :)
I recently have taken the support and programming of a web system written in JSF. The code is kind of messy and redundant, and yes, no documentation exists.
The system ...
10
votes
12answers
15k views
Producing executable jar in NetBeans
I'm using NetBeans 6.5 and for some reason it won't produce executable jar "out of the box".
I set my project to be the main project, defined main class in the project properties "run" menu and it ...