JackRabbit 搜索 PDF 文件

发布于 2024-10-31 19:16:20 字数 576 浏览 0 评论 0原文

我正在使用 Jackrabbit 执行一些基本的文件操作,例如添加、删除、搜索、版本控制等。一直很好,直到我遇到了 PDF 文件中的搜索问题。请在下面找到我的代码,该代码适用于所有其他格式,如 word、xcel、纯文本,但不适用于 PDF 文件。该代码在执行时没有给出任何异常,只是如果我给出 PDF 文件,它不会给出任何结果。是因为我的 PDF 文件没有索引吗?请帮我。

Query query = queryManager.createQuery("select * from [nt:resource] AS resource where contains(resource.*, '%sampletext%')", Query.JCR_SQL2);

QueryResult result = query.execute();

RowIterator ri = result.getRows();

   while (ri.hasNext()) {    
         Row row = ri.nextRow(); 
         System.out.println("Row: " + row.toString()); 
   }

提前致谢

I am using Jackrabbit to do some basic file operations like add, delete, search, versioning and all. It was good until I got stuck with the search problem in PDF file. Please find below my code that works fine with all other formats like word, xcel, plain text and not working for PDF file. The code is not giving any exception upon execution, it just does not give any result if I give a PDF File. Is it because my PDF file is not indexed?? Please help me.

Query query = queryManager.createQuery("select * from [nt:resource] AS resource where contains(resource.*, '%sampletext%')", Query.JCR_SQL2);

QueryResult result = query.execute();

RowIterator ri = result.getRows();

   while (ri.hasNext()) {    
         Row row = ri.nextRow(); 
         System.out.println("Row: " + row.toString()); 
   }

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风吹雨成花 2024-11-07 19:16:20

我可以想到 3 个可能的根本原因:

I can think of 3 possible root causes:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文