Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having problems trying to run a Java file that uses Apache Lucene.

I can compile it since I have the .jar file in my classpath but when I want to run the .class file, I have to add this parameter -classpath .:lucene-core.x.x.jar, if I don't I get this error:

    Exception in thread "main" java.lang.NoClassDefFoundError: HelloLucene
    Caused by: java.lang.ClassNotFoundException: HelloLucene
    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)
    Could not find the main class: HelloLucene.  Program will exit.

Do I have to add the classpath to the jvm also? If so how do I do this?

Here's the output I get when I echo my CLASSPATH:

ricardo@ricardo-laptop:~/Desktop/lucene/Indexer$ echo $CLASSPATH
/home/ricardo/lucene-3.4.0/lucene-core-3.4.0.jar:/home/ricardo/lucene-3.4.0/contrib/demo/lucene-demo-3.4.0.jar
share|improve this question
are you using any IDE for this or doing on console ? – GPS Nov 30 '11 at 4:53
It works if I use Netbeans but I doesn't when I use the console – rkrdo Nov 30 '11 at 4:55

1 Answer

up vote 1 down vote accepted

The class that's not found is your class, i.e. HelloLucene. Not the library.

Your class is probably compiled under bin or target/classes, so your classpath has to point whereever it is, i.e.

-classpath target/classes:...
share|improve this answer
I do have the .class file in the same folder – rkrdo Nov 30 '11 at 5:00
What's the complete command you're running? – armandino Nov 30 '11 at 5:05
java -classpath .:lucene-core-3.4.0.jar Indexer Indexer being the java class – rkrdo Nov 30 '11 at 5:09
Indexer.class and lucene jar are in the same directory where you run the command from? Also what's the full package name of the Indexer? – armandino Nov 30 '11 at 5:20
1  
I see. Yes, that's because HelloLucene is not on the CLASSPATH (which only has lucene jars). If you want to execute HelloLucene from the command line you need to a) specify its location with -classpath (or -cp) as you did before, or b) add its location to the CLASSPATH environment variable. One way or another, JVM needs to know where to find your class. Netbeans does it automatically that's why you didn't have a problem running it from Netbeans. – armandino Nov 30 '11 at 5:44
show 4 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.