使用 JSON Objective-c 到 DateTime .net 格式的 POST 的 NSTimeInterval 格式

发布于 2024-11-14 18:27:36 字数 342 浏览 2 评论 0原文

我按如下方式检索 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寒尘 2024-11-21 18:27:36

获取自 1970 年 UNIX 时间戳以来的当前时间戳(以毫秒为单位)。

NSTimeInterval millisecondedDate = ([[NSDate date] timeIntervalSince1970] * 1000);

将 milliesecondedDate 设置为不带小数的字符串。

NSString* formattedMilliseconds = [NSString stringWithFormat:@"%.0f", millisecondedDate];

以 DateTime .net 格式设置时间戳。

NSString *startOfDateFormat = @"/Date(";
NSString *endOfDateFormat = @"+0200)/";
NSString *dateTimeNow = [NSString stringWithFormat:@"%@%@%@",startOfDateFormat, formattedMilliseconds, endOfDateFormat];

可能有一个更好的解决方案可以做到这一点,但这目前对我有用。

Get the current timestamp in milliseconds since 1970 UNIX Timestamp.

NSTimeInterval millisecondedDate = ([[NSDate date] timeIntervalSince1970] * 1000);

Format the milliesecondedDate to a string with no decimals.

NSString* formattedMilliseconds = [NSString stringWithFormat:@"%.0f", millisecondedDate];

Set up the timestamp in DateTime .net format.

NSString *startOfDateFormat = @"/Date(";
NSString *endOfDateFormat = @"+0200)/";
NSString *dateTimeNow = [NSString stringWithFormat:@"%@%@%@",startOfDateFormat, formattedMilliseconds, endOfDateFormat];

There is probably a much better solution for doing this, but this worked for me for now.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文