将时间从毫秒转换为人类可读的日期

发布于 2024-12-08 17:04:05 字数 125 浏览 1 评论 0原文

我在 XML 提要中收到了以毫秒为单位的时间,并且我需要以任何适当的形式显示该时间,以便任何人都可以理解。

谁能指导我如何实现这种行为?

谢谢。

注意:我得到的毫秒时间是 UNIX 时间。

I have this time in milliseconds that i am receiving in an XML feed, and i need to display this time in any appropriate form, that anyone can understand.

can anyone guide me on how to achieve such behavior?

thank you.

Note: the millis time that i am getting is in UNIX time.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

弥枳 2024-12-15 17:04:05

使用 NSDatedateWithTimeIntervalSince1970: 方法,将时间戳除以 1000.0

NSDate* date = [NSDate dateWithTimeIntervalSince1970:timestamp / 1000.0];

您可以参考此问题了解有关格式设置的更多详细信息。

Use NSDate's dateWithTimeIntervalSince1970: method by dividing your timestamp by 1000.0.

NSDate* date = [NSDate dateWithTimeIntervalSince1970:timestamp / 1000.0];

You can refer to this question for more details on formatting.

音栖息无 2024-12-15 17:04:05

使用您的时间间隔创建一个 NSDate 对象,然后使用 NSDateFormatter 对象将其转换为显示值,如下所示:

- (void)displayDate:(double)unixMilliseconds {
    NSDate *date = [NSDate dateWithTimeIntervalSince1970:unixMilliseconds / 1000.];
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateStyle:NSDateFormatterFullStyle];
    [dateFormatter setTimeStyle:NSDateFormatterLongStyle];
    [dateFormatter setLocale:[NSLocale currentLocale]];
    NSLog("The date is %@", [dateFormatter stringFromDate:date]);
    [dateFormatter release];
}

显然,您应该分配一次格式化程序并保留它,如果你经常这样做。

Create an NSDate object with your interval and then use an NSDateFormatter object to turn that into a display value, like this:

- (void)displayDate:(double)unixMilliseconds {
    NSDate *date = [NSDate dateWithTimeIntervalSince1970:unixMilliseconds / 1000.];
    NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
    [dateFormatter setDateStyle:NSDateFormatterFullStyle];
    [dateFormatter setTimeStyle:NSDateFormatterLongStyle];
    [dateFormatter setLocale:[NSLocale currentLocale]];
    NSLog("The date is %@", [dateFormatter stringFromDate:date]);
    [dateFormatter release];
}

Obviously you should allocate the formatter once and keep it around if you do this a lot.

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