我可以在Java
中添加这样的字段,但我想在Solr
中使用SolrJ将pdf文档添加到Java
,如何添加pdf文件?
CommonsHttpSolrServer server = new CommonsHttpSolrServer("http://localhost:8983/solr");
SolrInputDocument doc = new SolrInputDocument();
doc.addField("cat", "lalal");
doc.addField("id", "1");
server.add(doc);
server.commit();
答案 0 :(得分:3)
Solr使用Apache Tika处理二进制文件。
有关SolrJ示例,请参阅http://wiki.apache.org/solr/ExtractingRequestHandler和http://wiki.apache.org/solr/ContentStreamUpdateRequestExample。