(and made some small changes to it)
PR: 28030
Obtained from:
Submitted by:
Reviewed by:


git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@150266 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Otis Gospodnetic 2004-03-30 13:22:59 +00:00
parent 948a61fa0b
commit 16146cbd32
1 changed files with 8 additions and 3 deletions

View File

@ -26,9 +26,14 @@ import java.util.Date;
class IndexFiles {
public static void main(String[] args) throws IOException {
try {
Date start = new Date();
String usage = "java " + IndexFiles.class + " <root_directory>";
if (args.length == 0) {
System.err.println("Usage: " + usage);
System.exit(1);
}
Date start = new Date();
try {
IndexWriter writer = new IndexWriter("index", new StandardAnalyzer(), true);
indexDocs(writer, new File(args[0]));
@ -42,7 +47,7 @@ class IndexFiles {
} catch (IOException e) {
System.out.println(" caught a " + e.getClass() +
"\n with message: " + e.getMessage());
"\n with message: " + e.getMessage());
}
}