本文整理汇总了Java中org.apache.lucene.analysis.util.FilesystemResourceLoader类的典型用法代码示例。如果您正苦于以下问题:Java FilesystemResourceLoader类的具体用法?Java FilesystemResourceLoader怎么用?Java FilesystemResourceLoader使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FilesystemResourceLoader类属于org.apache.lucene.analysis.util包,在下文中一共展示了FilesystemResourceLoader类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setup
import org.apache.lucene.analysis.util.FilesystemResourceLoader; //导入依赖的package包/类
@Before
public void setup() throws Exception {
Map<String, String> args = new HashMap<String, String>();
args.put(
"mapping",
"src/test/resources/multistage-test/first.txt;src/test/resources/multistage-test/second.txt");
charFilterFactory = new MultistageMappingCharFilterFactory(args);
charFilterFactory.inform(new FilesystemResourceLoader());
tokenizerFactory = new CJKTokenizerFactory(new HashMap<String, String>());
}
示例2: setUp
import org.apache.lucene.analysis.util.FilesystemResourceLoader; //导入依赖的package包/类
@BeforeClass
public static void setUp() throws Exception {
Map<String, String> map = new HashMap<String, String>();
map.put("mapping", "mapping.txt");
charFilterFactory = new MappingCharFilterFactory(map);
charFilterFactory.inform(new FilesystemResourceLoader(new File(
"src/test/resources/cjkbigramfilter")));
tokenizerFactory = new CJKTokenizerFactory(new HashMap<String, String>());
map = new HashMap<String, String>();
map.put("outputUnigrams", "true");
tokenFilterFactory = new CJKBigramFilterFactory(map);
}