将sql时间戳转换为yyyy-mm-ddThh:mm:ss.sssZ
我需要将 SQL Server 时间戳格式(存储在 Timestamp java 数据类型上)转换为这种格式 yyyy-mm-ddThh:mm:ss.sssZ (这是 Alfresco 解析的日期格式)
我该怎么做?
感谢您的宝贵时间!
安德里亚
I need to convert a SQL Server timestamp format (stored on Timestamp java data type) into this format yyyy-mm-ddThh:mm:ss.sssZ (it's the date format parsed by Alfresco)
How can I do it?
thanks for your time!
Andrea
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个简单的日期格式:
Try this SimpleDateFormat:
您可以尝试从 TimeStamp 实例获取时间(以毫秒为单位),创建一个 Date 实例并使用 DateFormatter 类按您想要的方式格式化它。也就是说,假设 DateFormatter 支持您想要的格式。
You could try and get the time (in ms) from your TimeStamp instance, create a Date instance and use the DateFormatter class to format it anyway you want. That is, assuming DateFormatter supports the format you want.