pdfboxindexfiles.java

来自「LuceneInAction配套源码,LuceneInAction是对lucen」· Java 代码 · 共 12 行

JAVA
12
字号
package lia.handlingtypes.pdf;import org.pdfbox.searchengine.lucene.IndexFiles;import java.io.File;public class PDFBoxIndexFiles {    public static void main(String[] args) throws Exception {        IndexFiles indexFiles = new IndexFiles();        indexFiles.index(new File(args[0]), true, args[1]);    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?