Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有单词列表(字符串)。我想获得每个单词的词汇类别。Word Net 有名词类、动词类等。我想获取每个单词的类别。如何使用 JAWS 在 Java 中获得此信息。
你的一个词可以有多个类别。也许你可以尝试类似的东西:
list<Synset> list=database.getSynsets(word); edu.smu.tspell.wordnet.SynsetType stype = list.get(0).getType()
看看ReferenceSynset.getLexicalFileNumber。man lexnames这将产生一个与手册页中列出的类别相对应的整数。
ReferenceSynset.getLexicalFileNumber
man lexnames