Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚收到一个从 Hyperion 导出的 XML 文件。XLM 如下:
<DueDate date="1348257648893">
该值表示 2012 年 9 月 21 日或 2012 年 9 月 21 日下午 4:00。
有谁知道这是什么格式以及如何翻译。我必须创建一个包含很多日期的新 XML 文件,并且需要能够将它们转换为正确的格式。
我尝试在 Excel 中对其进行格式化并测试了几个毫秒变体,但无法破解代码。
谢谢你的帮助
可能是从 unix 纪元日期(1970 年 1 月 1 日)开始的毫秒数。
select to_date('19700101', 'YYYYMMDD') + 1348257648893/(86400*1000) from dual;