Jython 日期转换
给定如下字符串,我需要使用 jython 将
1 Dec 2008 06:43:00 +0100
转换为
MM/DD/YYYY HH:MM:SSAM
最好的方法是什么?
Given a string as below, I need to convert:
1 Dec 2008 06:43:00 +0100
to
MM/DD/YYYY HH:MM:SSAM
using jython what is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我手边没有 jython,但我希望这样的东西能够工作:
I don't have jython handy, but I'd expect something like this to work:
Jython 2.5b0(测试版)具有 时间模块,包括
(Jython2.2.1 中缺少
strptime
)。转换格式的 python 版本如下所示(不确定区域组件):
Jython 2.5b0 (beta) has an implementation of the time module that includes
(
strptime
is missing in Jython2.2.1).A python version of the conversion formats will look like (not sure of the zone component):