org.apache.lucene.demo
Class FileDocument
public class FileDocument
A utility for making Lucene Documents from a File.
Document
public static Document Document(File f)
throws FileNotFoundException
Makes a document for a File.
The document has three fields:
path
--containing the pathname of the file, as a stored,
untokenized field;
modified
--containing the last modified date of the file as
a field as created by DateTools; and
contents
--containing the full contents of the file, as a
Reader field;
Copyright © 2000-2007 Apache Software Foundation. All Rights Reserved.