Re: Indexing dates

2005-10-31 Thread Erik Hatcher
Looks like another strange classpath issue. There most certainly is a method with that signature: $ javap -classpath lucene-1.4.3.jar org.apache.lucene.document.Field Compiled from "Field.java" public final class org.apache.lucene.document.Field extends java.lang.Object implements java.io.S

Indexing dates

2005-10-31 Thread anushri kumar
Hi, I was trying to index dates. I wrote Document doc = new Document(); doc.add(Field.Keyword("indexdate",new Date() )); but while running the program it gave me the following error. Exception in thread "main" java.lang.NoSuchMethodError: org.apache.lucene.docume nt.Field.Keyword(Ljava/lang/St