我在JWNL做的工作。 我希望用户输入一个查询,然后我需要找到包含查询的单词。从这些话我需要识别名词。这是我写的代码:
public class graph
{
public static void main(String[] args) throws JWNLException
{
WordNetHelper.initialize("F:\\file_properties.xml");
System.out.println("Enter the query term!!!");
Scanner sc= new Scanner(System.in);
while(sc.hasNext())
{
String s= sc.next();
String[] result = s.split("\\s");
for (int x=0; x<result.length; x++)
{
System.out.println(result[x]);
}
}
}
}
我该怎么办?如果代码中有任何更改,请指定它。
答案 0 :(得分:0)