I downloaded luke-1.0.1.jar (Luke 1.0.1 binary without any dependencies) from http://code.google.com/p/luke/downloads/list.

And I have WinXP, with latest Java 6 downloaded from Oracle/Sun web site.

I run the command line: "java -jar luke-1.0.1.jar" and try to launch Luke, but I got following error:

Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/lucene/analysis/Analyzer
Caused by: java.lang.ClassNotFoundException: org.apache.lucene.analysis.Analyzer
        at java.net.URLClassLoader$1.run(Unknown Source)
        at java.security.AccessController.doPrivileged(Native Method)
        at java.net.URLClassLoader.findClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
        at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
        at java.lang.ClassLoader.loadClass(Unknown Source)
Could not find the main class: org.getopt.luke.Luke. Program will exit.

Any clue, what shall I do? I totally have no knowledge of Java.

Thanks

Hardy

link|improve this question

49% accept rate
feedback

3 Answers

up vote 0 down vote accepted

Use luke-all.jar instead,

http://code.google.com/p/luke/downloads/detail?name=lukeall-1.0.1.jar&can=2&q=

link|improve this answer
feedback

So Java complains that it cant find a dependency. Which is little surprise since you downloaded a binary without dependencies.

Download the binary with all the dependencies (try the "featured" one) and you should be good.

link|improve this answer
I think the version I downloaded is featured one. – hardywang Mar 12 '11 at 1:37
Judging from your description "Luke 1.0.1 binary without any dependencies" it's not the one – iluxa Mar 12 '11 at 1:40
All I can see from download page is either source code or binary. Fairly clearly on the page. I also downloaded lucene jar file, how can I make them run together? – hardywang Mar 12 '11 at 1:46
download the "self-contained..." thing. Third one in the list. This one: "lukeall-1.0.1.jar Release 1.0.1 self-contained executable JAR with plugins (uses Lucene 3.0.1) Featured" – iluxa Mar 12 '11 at 1:48
Oh, great, it works! Thanks a lot! – hardywang Mar 12 '11 at 1:50
feedback

Luke is a tool for examining lucene indices. You need to combine it with Lucene. You can either download Lucene and add appropriare JAR files to the classpath, or download a fatter Luke binary that includes Lucene.

link|improve this answer
I copied Lucene jar file inside same folder of luke jar file, and run command "java -cp C:\Temp\Lucene\ -jar luke-1.0.1.jar", the same error. – hardywang Mar 12 '11 at 1:48
3  
I am a person with feelings. – Luke Mar 12 '11 at 1:49
I thought you were a number. – bmargulies Mar 12 '11 at 19:07
feedback

Your Answer

 
or
required, but never shown

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