如何在Lucene 6.5中使用InetAddressPoint?

时间:2017-04-28 12:52:51

标签: java lucene

请有人向我解释为什么以下不起作用?

Document docObj = new Document();
InetAddress addr = null;
try {addr = InetAddress.getByName("127.0.0.1");}
catch (UnknownHostException e) {e.printStackTrace();}
if (addr != null)
    docObj.add(new InetAddressPoint("ipAddress", addr));

我导入org.apache.lucene.document.InetAddressPoint并将 ... / lucene-6.5.0 / sandbox / lucene-sandbox-6.5.0.jar 添加到我的项目中,但我的IDE(intellij)一直告诉我InetAddressPoint未知。

0 个答案:

没有答案