JodaTime:以天为小时打印周期?
有没有什么方法可以在 JodaTime 中创建一个 periodFormatter,它能够将 2 天 4 小时 4 分钟的周期打印为 52 小时 4 分钟?
Is there any way to create a PeriodFormatter in JodaTime which is able to print a Period of lets say 2 days, 4 hours and 4 minutes as 52 hours, 4 minutes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您可以使用
Period.normalizedStandard
指定仅包含小时和分钟的PeriodType
。样本:I believe you can use
Period.normalizedStandard
specifying aPeriodType
containing just hours and minutes. Sample: