Actually you have to mark the field as Field.Store.YES in order to see that field when you retrieve the doc at search time.
You'll then be able to retrieve the string value. Mike On Thu, Apr 2, 2009 at 10:45 AM, David Seltzer <dselt...@tveyes.com> wrote: > Hi All, > I have a document with a field called "TextTranscript". Its created > using the following command: > > myDoc.add(new Field("TextTranscript", sTranscriptBody, Field.Store.NO, > Field.Index.TOKENIZED)); > > I'm then trying to retrieve the TokenStream by pulling the field. > > Field fTextTranscript = lucDoc.getField("TextTranscript"); > > But fTextTranscript seems always to be NULL. My understanding is that I > should be able to retrieve the TokenString, even if it's not "Stored". > Am I incorrect? Is there a better way of doing this? > > Thanks! > > -Dave > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org > For additional commands, e-mail: java-user-h...@lucene.apache.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org