java智能日期解析器

发布于 2024-11-09 05:05:45 字数 165 浏览 0 评论 0原文

Java 中是否有一个智能日期解析器可以解析各种日期格式,而无需提前知道格式是什么? 例如,我可以有以下格式:

21-3-1998,
March 2004, 2001, 
3/4/97
12-Dec-1998

是否有一个简单的解析调用(第三方库可以)我可以用来处理它们调用?

is there a smart date parser in Java that would parse a variety of date formats without knowning ahead what the format is?
for example I can have the following formats:

21-3-1998,
March 2004, 2001, 
3/4/97
12-Dec-1998

is there a simple parse call(third party lib is ok) I can use to handle them call?

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

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

发布评论

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

评论(3

我一直都在从未离去 2024-11-16 05:05:45

我不知道是否有一个好的开箱即用的选择,考虑到几乎无限数量的排列;但如果我必须这样做,我会从事实上的 Java 日期包 Joda 开始,只需对允许的数据格式序列进行线性查找,并接受第一个解析成功的数据格式。

I don't know if there is a good out-of-the-box choice, given almost unlimited number of permutations; but if I had to do it, I'd start with de-facto Java date package, Joda, and just do linear lookup with sequence of allowed data formats, and accept first one that parses succsefully.

残疾 2024-11-16 05:05:45

请参阅:

Java 有一个好的日期解析器吗?

一些建议。 (阿帕奇共享区和乔达时间)

See:

Is there a good date parser for Java?

for some suggestions. (Apache Commons and Joda Time)

榆西 2024-11-16 05:05:45

您是否尝试过 SimpleDateFormat.parse(String, ParsePosition) 的标准 Java 解决方案?

根据 文档

从字符串中解析文本以生成
日期。该方法尝试解析
从给出的索引开始的文本
位置。如果解析成功,则
pos的index更新为index
在使用的最后一个字符之后(解析
不一定要用全部
直到结尾的字符
字符串),解析的日期是
回来了。更新后的pos可以使用
来指示起始点
下次调用此方法。如果出现错误
发生,则 pos 的索引不是
改变了,设置了pos的错误索引
到字符的索引,其中
发生错误,并且 null 是
返回。

Have you tried the standard Java solution of SimpleDateFormat.parse(String, ParsePosition)?

As per the documentation:

Parses text from a string to produce a
Date. The method attempts to parse
text starting at the index given by
pos. If parsing succeeds, then the
index of pos is updated to the index
after the last character used (parsing
does not necessarily use all
characters up to the end of the
string), and the parsed date is
returned. The updated pos can be used
to indicate the starting point for the
next call to this method. If an error
occurs, then the index of pos is not
changed, the error index of pos is set
to the index of the character where
the error occurred, and null is
returned.

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