Lucene中如何获取term的偏移量?
我想获得 Lucene 中一项的偏移量。我怎样才能得到它?
我将我的内容向量化为
Field.TermVector.WITH_POSITIONS_OFFSETS
Lucene 中是否有任何方法可以为我提供一个文档中该术语的偏移量?
I want to get the offset of one term in the Lucene . How can i get it ?
I vectored my content as
Field.TermVector.WITH_POSITIONS_OFFSETS
Is there any method in Lucene that give me offset of the term in one Document ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
请参阅 http:// lucene.apache.org/core/3_0_3/api/core/org/apache/lucene/index/TermPositionVector.html 获取您想要的信息。
Try this:
See http://lucene.apache.org/core/3_0_3/api/core/org/apache/lucene/index/TermPositionVector.html to get the info you want.