Tagged Questions
In Java, the classpath tells the Java Virtual Machine where to look for user-defined classes and packages when running Java programs. The classpath is a parameter and can be set either on the command-line, or through an environment variable.
95
votes
14answers
92k views
Setting multiple jars in java classpath
Is there a way to include all the jar files within a directory in the classpath?
I'm trying java -classpath lib/*.jar:. my.package.Program and it is not able to find class files that are certainly in ...
32
votes
6answers
16k views
What is the difference between NoClassDefFoundError and ClassNotFoundException?
I want to know the difference between the specified error and the exception.
What is the reason for getting each of them and any thought process on how to deal with such errors?
While working on a ...
23
votes
10answers
14k views
Classpath including JAR within a JAR
Is it possible to specify a Java classpath that includes a JAR file contained within another JAR file?
20
votes
5answers
13k views
How do you change the CLASSPATH within Java?
How do you change the CLASSPATH of a Java process from within the Java process?
Before you ask me "Why would you want to do that?" I'll explain it shortly.
When you have a Clojure REPL running ...
19
votes
5answers
24k views
How to really read text file from classpath in Java
I am trying to read a text file which is set in CLASSPATH system variable. Not a user variable.
I am trying to get input stream to the file as below:
Place the directory of file (D:\myDir)in ...
17
votes
6answers
6k views
Find where java class is loaded from
Does anyone know how to programmaticly find out where the java classloader actually loads the class from?
I often work on large projects where the classpath gets very long and manual searching is ...
16
votes
2answers
5k views
Maven classpath order issues
Does anyone know of a way to set a specific classpath order in Maven2, rather than the random ordering I appear to experience at the moment?
There are a number of legitimate reasons for wanting to do ...
16
votes
7answers
45k 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 ...
14
votes
6answers
913 views
Is the Java classpath final after JVM startup?
I have read a lot about the Java class loading process lately. Often I came across texts that claimed that it is not possible to add classes to the classpath during runtime and load them without class ...
14
votes
3answers
21k views
Getting Ant <javac> to recognise a classpath
I have an Apache Ant build file with a <javac> command that requires four specific JARs to be on the build classpath. I've tried to do this:
<project basedir=".." default="build_to_jar" ...
14
votes
5answers
10k views
List of dependency jar files in Maven
Using Maven 2, is there a way I can list out the jar dependencies as just the file names?
mvn dependency:build-classpath
can list the jar files, but that will include the full path to their ...
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
7answers
13k views
How to set a long Java classpath in MSDOS/Windows?
I'm trying to run a particular JUnit test by hand on a Windows XP command line, which has an unusually high number of elements in the class path. I've tried several variations, such as:
set ...
12
votes
8answers
14k views
Java error: Only a type can be imported. XYZ resolves to a package
I get the error: "Only a type can be imported. XYZ resolves to a package."
Someone has explained the cause here but I am not sure what I supposed to do to fix this. FYI: I am using Eclipse. I have ...
11
votes
2answers
3k views
Get a list of resources from classpath directory
I am looking for a way to get a list of all resource names from a given classpath directory, something like a method List<String> getResourceNames (String directoryName).
For example, given a ...
11
votes
6answers
22k views
Android Eclipse Classpath - want to add classpath container path but eclipse won't let me
I'm using Eclipse to learn to develop Android applications in Java. I haven't used Eclipse before.
The project I'm trying to use (supplied by OReilly as part of 'Android Application Development') is ...
11
votes
2answers
34k views
read file in classpath
Here is what I want to do and I am wondering if there is any Spring classes that will help with implementing. I don't have to use spring for this particular problem, I'm just implementing it with ...
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
3answers
13k views
Unbound classpath container in Eclipse
I have checked out a project using Subversive for Eclipse and I am getting the following errors:
The project cannot be built until build path errors are resolved
Unbound classpath container: 'JRE ...
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
2answers
8k views
How can I add jars to the classpath when I invoke Jython *without* adding them to $CLASSPATH?
I'd like to do something similar to jython -cp FOO:BAR:BAZ argle.py.
If I add FOO, BAR, and BAZ to $CLASSPATH this works. I tried to add them to sys.path at run-time, but that doesn't appear to work ...
10
votes
6answers
1k views
Is there a tool to discover if the same class exists in multiple jars in the classpath?
If you have two jars in your classpath that contain different versions of the same class, the classpath order becomes critical.
I am looking for a tool that can detect and flag such potential ...
9
votes
1answer
286 views
Jar hell: how to use a classloader to replace one jar library version with another at runtime
I'm still relatively new to Java, so please bear with me.
My issue is that my Java application depends on two libraries. Let's call them Library 1 and Library 2. Both of these libraries share a ...
9
votes
3answers
1k views
How do I set up the Clojure classpath in Emacs after installing with ELPA?
I'm trying to add paths to my classpath in the Clojure REPL that I've set up in Emacs using ELPA. Apparently, this isn't the $CLASSPATH environment variable, but rather the swank-clojure-classpath ...
9
votes
11answers
11k views
Ant + JUnit: NoClassDefFoundError
Ok, I'm frustrated! I've hunted around for a good number of hours and am still stumped.
Environment: WinXP, Eclipse Galileo 3.5 (straight install - no extra plugins).
So, I have a simple JUnit ...
9
votes
4answers
2k views
How to walk through Java class resources?
I know we can do something like this:
Class.class.getResourceAsStream("/com/youcompany/yourapp/module/someresource.conf")
to read the files that are packaged within our jar file.
I have googled it ...
9
votes
7answers
5k views
Remove project .jars from project explorer view in Eclipse
The list of jars just takes up too much space. Can I collapse it or hide it?
8
votes
1answer
590 views
Is it possible to have Ant print out the classpath for a particular target? If so, how?
I'm trying to get a target to build that has quite a long list of <pathelement location="${xxx}"/> and <path refid="foo.class.path"/> elements in its <path id="bar.class.path"> ...
8
votes
4answers
1k views
Java -classpath option
Will the use of -classpath option with java, add to or replace the contents of the CLASSPATH env variable?
7
votes
4answers
186 views
Eclipse: folder with jars in project
When I work on small desktop projects I used to create lib folder in my project's root where I keep all project's jar dependencies. Then I use Configure Build Path -> Libraries -> Add JARs... to ...
7
votes
4answers
1k views
Using bash, how do you make a classpath out of all files in a directory
This will be a really simple freebie for a bash guru:
Question
Using bash, how do you make a classpath out of all files in a directory?
Details
Given a directory:
LIB=/path/to/project/dir/lib
...
7
votes
4answers
2k views
What is the difference between Class Path and Build Path
i am new to java i am confused with these two term.
Also what should i do to create a file under the src folder of a Spring MVC Project?
When i create using a File object it creates the file inside ...
7
votes
2answers
9k views
how to add directory to classpath in an application run profile in intellij idea?
I'm trying to add a directory to the classpath of an application run profile
If I override by using -cp x:target/classes in the VM settings, I get the following error:
...
7
votes
2answers
3k views
Problem compiling in Clojure
I've been trying to compile a very simple test.clj in Clojure without any success. I have a thread on the Clojure Google Group with several responses, but nothing has helped. To quickly summarize, ...
7
votes
1answer
2k views
Difference between classpath and endorsed directory
Does anyone know what the difference is between adding an appropriate JAR-file (eg. Apache XALAN) to a JRE's endorsed directory and adding it to the application's classpath?
Is it possible to take a ...
7
votes
5answers
7k views
How do I include jars in a groovy script?
I have a groovy script that needs a library in a jar. How do I add that to the classpath? I want the script to be executable so I'm using #!/usr/bin/env groovy at the top of my script.
6
votes
1answer
97 views
How are clojure namespaces looked up?
To start off I am not a Java programmer, so it would be helpful if your answers are not defined in terms of Java (inasmuch as that makes sense).
I have a leiningen project (specifically a web project ...
6
votes
2answers
326 views
Create script with classpath from SBT
I'd like to have SBT create a file and write the project's runtime full classpath (scala, managed and unmanaged libs, project classes) for a particular stage (in this case, only for compile).
I'm ...
6
votes
1answer
116 views
Is there an easy way to use an OSGi bundle in a classpath for Ant junit or java tasks?
I have a bunch of OSGi bundles that are basically jars that contain other jars and a manifest.
bundle xyz.jar:
somejar1.jar
somejar2.jar
Manifest
I want to run some junit tests, and need ...
6
votes
3answers
3k views
Loading velocity template inside a jar file
I have a project where I want to load a velocity template to complete it with parameters. The whole application is packaged as a jar file. What I initially thought of doing was this:
VelocityEngine ...
6
votes
5answers
249 views
Downloading JAR files at runtime in Java
I am wondering if it is possible to have a Java desktop application, on startup, look to some URL, to see if it needs an update, and if so download necessary JAR files, and add them to classpath for ...
6
votes
7answers
9k views
Why does ANT tell me that JAVA_HOME is wrong when it is not?
I get the error:
C:\dev\ws\springapp\build.xml:81: Unable to find a javac compiler;
com.sun.tools.javac.Main is not on the classpath.
Perhaps JAVA_HOME does not point to the JDK.
It is currently set ...
6
votes
7answers
4k views
Include multiple jars with classpathentry
I have an eclipse's .classpath file that looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry ...
6
votes
3answers
3k views
What does combineaccessrules mean in Eclipse classpaths?
This has been bugging me for years now, and I thought one of you fine people would know - in Eclipse's .classpath files, what is the combineaccessrules attribute of the classpathentry element actually ...
6
votes
7answers
6k views
What's the minimum classpath for an Axis2 client?
I want to build an Axis2 client (I'm only accessing a remote web service, I'm not implementing one!) with Maven2 and I don't want to add 21MB of JARs to my project. What do I have to put in my pom.xml ...
5
votes
1answer
481 views
How do I run an sbt main class from the shell as normal command-line program?
How can I run an sbt app from the shell, so that I can run my app as a normal command-line program (as if run directly via scala but without having to set up an enormous classpath)?
I know I can do:
...
5
votes
3answers
109 views
Do I need all classes on the client, server and registry for RMI to work?
I'm doing my first steps with RMI, and I have a simple question.
I have a .jar file which has the implementation of several methods from a library.
I want to call this methods in the .jar file using ...
5
votes
5answers
228 views
Java class finder Tool
Anyone who uses Java regularly knows the amount of trouble multiple jars in classpath can give us. I am looking for a tool which will help me -
Search for class files inside jars in Classpath
Search ...