如何将 EXIF 元中找到的日期时间转换为 XSD 标准?
我正在解析一些 EXIF 文件。
其中一个元字段是Date/Time Original
,格式为:
2009:09:02 03:28:43
。
我的应用程序正在创建一些元对象类型,这些类型将根据架构进行验证。我的架构将 Date/Time Original
字段定义为 DateTime
类型。
如何使用 Java 将上述内容转换为 XSD DateTime?
I'm parsing some EXIF files.
One of the meta fields is Date/Time Original
in the format:
2009:09:02 03:28:43
.
My application is creating some meta-object types that will be validated against a schema. My schema defines the Date/Time Original
field as being of type DateTime
.
How can I convert the above to the XSD DateTime using Java?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 SimpleDateFormat 实例将从文件中获取的日期解析为 java.util.Date 对象,然后可以使用另一个 SimpleDateFormat 转换为 XSD 日期格式。它应该看起来像这样:
Use a SimpleDateFormat instance to parse the date you get from the file to a java.util.Date object, then you can use another SimpleDateFormat to convert to the XSD date format. It should look like this: