Lucene中如何获取term的偏移量?

发布于 2024-09-03 12:03:47 字数 164 浏览 6 评论 0原文

我想获得 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝戈者 2024-09-10 12:03:47

试试这个:

TermPositionVector vector = (TermPositionVector) reader.getTermFreqVector(docId, myfield);

请参阅 http:// lucene.apache.org/core/3_0_3/api/core/org/apache/lucene/index/TermPositionVector.html 获取您想要的信息。

Try this:

TermPositionVector vector = (TermPositionVector) reader.getTermFreqVector(docId, myfield);

See http://lucene.apache.org/core/3_0_3/api/core/org/apache/lucene/index/TermPositionVector.html to get the info you want.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文