请有人向我解释为什么以下不起作用?
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
未知。