【问题标题】:How the get the filepath of a document in setFieldName of PDFTextStream?如何在 PDFTextStream 的 setFieldName 中获取文档的文件路径?
【发布时间】:2014-06-13 15:30:06
【问题描述】:

我正在使用 PDFTextStreamLucene 来索引 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


【解决方案1】:

我没有看到您可以在 PDFTextStream 中使用的任何常量。但是,在将其添加到索引之前,将其直接添加到 PDFDocumentFactory 生成的 Lucene 文档中会非常简单:

doc= PDFDocumentFactory.buildPDFDocument(file, config);

doc.addField(new StringField("path", file.getPath(), Field.Store.YES));

System.out.println(doc.get("path"));
writer.addDocument(doc);

您可能希望使用不同的字段类型,具体取决于您的需要(StringField 用于精确匹配,TextField 用于全文搜索,StoredField 用于不搜索该字段)

【讨论】:

  • 谢谢!我不认为我可以使用 doc.addField(); PDFTextStream 使用,但现在我知道了,谢谢你的回答!
猜你喜欢
  • 1970-01-01
  • 2014-10-19
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多