Skip to content

Instantly share code, notes, and snippets.

View mocobeta's full-sized avatar

Tomoko Uchida mocobeta

View GitHub Profile
@mocobeta
mocobeta / BaseIndexer.java
Created June 23, 2012 15:48
Lucene入門 3章 インデックス作成プログラム - Lucene 3.6 バージョン
package indexer;
import java.io.File;
import java.io.IOException;
import java.lang.reflect.Constructor;
import java.util.Date;
import org.apache.lucene.analysis.Analyzer;
import org.apache.lucene.document.Document;
import org.apache.lucene.index.IndexWriter;