使用 JSON Objective-c 到 DateTime .net 格式的 POST 的 NSTimeInterval 格式
我按如下方式检索 NSTimeInterval:
NSTimeInterval milisecondedDate = ([[NSDate date] timeIntervalSince1970] * 1000);
记录以下内容: UNIX 时间戳:“1307710190993.865967”
我只希望点之前的值通过 JSON 发送,如下所示:
"/Date(1307710131826+0200)/ “
有什么建议吗?
提前致谢,
I retrieve the NSTimeInterval as follows:
NSTimeInterval milisecondedDate = ([[NSDate date] timeIntervalSince1970] * 1000);
Which logs this:
UNIX Timestamp: "1307710190993.865967"
I only want the value before the dot to send with JSON like this:
"/Date(1307710131826+0200)/"
Any suggestions?
Thanks in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
获取自 1970 年 UNIX 时间戳以来的当前时间戳(以毫秒为单位)。
将 milliesecondedDate 设置为不带小数的字符串。
以 DateTime .net 格式设置时间戳。
可能有一个更好的解决方案可以做到这一点,但这目前对我有用。
Get the current timestamp in milliseconds since 1970 UNIX Timestamp.
Format the milliesecondedDate to a string with no decimals.
Set up the timestamp in DateTime .net format.
There is probably a much better solution for doing this, but this worked for me for now.