org.apache.lucene.demo
Class FileDocument
java.lang.Object
org.apache.lucene.demo.FileDocument
public class FileDocument
- extends Object
A utility for making Lucene Documents from a File.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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;
- Throws:
FileNotFoundException
Copyright © 2000-2008 Apache Software Foundation. All Rights Reserved.