
cn.tyoui.test.MyTest Maven / Gradle / Ivy
package cn.tyoui.test;
import cn.tyoui.index.FileAnalyzer;
/**
* 测试类
*
* @author Tyoui
*/
public class MyTest {
//创建索引的文件目录在什么时候都要提供、jdk要1.8以上
public static void main(String args[]) {
FileAnalyzer fileAnalyzer = new FileAnalyzer();
fileAnalyzer.setCreateIndexDir("D:");//设计要创建索引的目录,请勿全盘检索
//####################################################################
fileAnalyzer.createIndex();//开始创建索引
//####################################################################
fileAnalyzer.update();//更新索引
//####################################################################
fileAnalyzer.searchIndex("中国", 100);//搜索出中国前100个排名
//####################################################################
try {
fileAnalyzer.closeAll();//关闭索引
} catch (Exception e) {
e.printStackTrace();
}
fileAnalyzer.deleteAllFilesOfDir();//删除索引文件
//####################################################################
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy