XML 模式/XACML 持续时间类型的 JodaTime
我正在尝试使用 Joda 支持所有 XACML 数据时间,但无法让它解析“P50DT4H4M3S”等字符串的持续时间。我怀疑问题在于 ISO 和 W3C 在某个时刻分道扬镳,而 Joda 支持 ISO 路径。
无论如何,有没有一种简单的方法可以弥补这一差距。如果可能的话,我想避免构建自己的解析器。
我知道 javax.xml 类型,它似乎可以满足我的需要,但它基于 GregorianCalendar,我希望通过使用 Joda 来避免这种情况。
I'm trying to use Joda to support all XACML data times but am having trouble getting it to parse duration from strings like "P50DT4H4M3S". I suspect the problem is ISO and W3C parted ways at some point and Joda supports the ISO path.
In any event, is there an easy way to bridge the gap. I'd like to avoid building my own parser if possible.
I'm aware of javax.xml types, which seems to do what I need, except its based on GregorianCalendar which I'd hoped to avoid by using Joda.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
P50DT4H4M3S
是 Joda-Time 术语中的一个Period
,可以使用PeriodFormatter
进行解析。 ISOPeriodFormat 中有标准解析器。P50DT4H4M3S
is aPeriod
in Joda-Time terminology, and can be parsed usingPeriodFormatter
. There are standard parsers in ISOPeriodFormat.像这样的东西:
Something like this: