【发布时间】:2014-06-13 15:30:06
【问题描述】:
我正在使用 PDFTextStream 和 Lucene 来索引 pdf 文件时遇到问题。问题是使用PDFTextStream 的方法构建文本,但我无法获取存储在索引文件的目录中的文档的文件路径,我尝试过:
setFieldName(file.getPath(),"path"); 但我无法获取文件路径。有什么建议么?
这是我的代码:
public class PDFDocument {
//Constructor vacío
IndexWriter writer;
File directorio;
public PDFDocument(){
directorio= new File("C:/indexpdf");
}
/*Metódo estático para agregar un documento PDF a un IndexWriter de Lucene
* pasando como parámetros IndexWriter, y el archivo PDF
*/
public void agregarPDFaIndex() throws IOException{
writer= new IndexWriter(new File("C:/indexpdfsalida"), new StandardAnalyzer(), true);
//Se crea e inicializa una nueva instancia de DocumentFactoryCofig
DocumentFactoryConfig config= new DocumentFactoryConfig();;
config.setCopyAllPDFAttrs(false);
//los datos del documento PDF se almacenan, se tokenizan y se indexan
config.setPDFAttrSettings(true, true, true);
/*Se configuran los nombre explicitos que deben ser usados en los Fields
* que crean una nueva instancia de un Document de Lucene *
*/
File[] files= directorio.listFiles();
for(File file: files){
if(file.canRead() && !file.isDirectory() && file.getName().endsWith(".pdf")){
System.out.println("Indexando el archivo: "+file.getAbsolutePath());
config.setMainTextFieldName("content");
Document doc= new Document();
config.setTextSettings(false, true, true);
config.setFieldName(PDFTextStream.ATTR_AUTHOR, "autor");
config.setFieldName(PDFTextStream.ATTR_CREATION_DATE, "fecha_creacion");
config.setFieldName(PDFTextStream.ATTR_MOD_DATE,"ultimo_mod");
config.setFieldName(PDFTextStream.ATTR_TITLE,"titulo");
config.setFieldName(DocumentFactoryConfig.DEFAULT_MAIN_TEXT_FIELD_NAME, "content");
config.setFieldName(PDFTextStream.ATTR_CREATOR,"creador");
config.setFieldName(PDFTextStream.ATTR_PRODUCER, "productor");
config.setFieldName(PDFTextStream.ATTR_SUBJECT, "asunto");
config.setFieldName(file.getPath(), "path");
doc= PDFDocumentFactory.buildPDFDocument(file, config);
System.out.println(doc.get("path"));
writer.addDocument(doc);
}
}
writer.optimize();
writer.close();
System.out.println("OK");
}
public static void main(String[]args) throws IOException{
PDFDocument doc= new PDFDocument();
doc.agregarPDFaIndex();
}
}
【问题讨论】:
-
您好,欢迎来到 SO。我已经编辑了您的问题,以使一些事情更清楚。请确保它是正确的。
标签: java eclipse lucene indexing filepath