从 Lucene 文档中获取 Date 对象

发布于 2024-09-12 13:52:35 字数 140 浏览 8 评论 0原文

我已经使用 DateTools.dateToString 在 lucene 中索引了日期,以将日期存储在特定字段中。

有什么方法可以知道这是否是日期字段,更重要的是如何再次获取日期?

它是一个具有长整型值的字段。

谢谢

I have indexed a date in lucene using DateTools.dateToString to store the date in a particular field.

Is there any way to know if this was a date field, and more importantly how to get the date out again?

It's a fieldable with a long integer value.

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

甜妞爱困 2024-09-19 13:52:35

Lucene 没有强类型字段,因此同一个字段可以在一条记录中包含日期,在另一条记录中包含字符串,在第三条记录中包含随机整数。由您的应用程序知道在特定字段中寻找什么。

您可以使用 DateTools.StringToDate< /a> 从字符串转换回日期的方法。

Lucene does not have strong-typing of fields, so the same field could have a date in one record and a string in another record, and a random integer in a third. It's up to your application to know what to look for in a particular field.

You can use the DateTools.StringToDate method to convert from a string back to a date.

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