从 iPhone call_history.db 读取日期列

发布于 2024-11-05 03:05:56 字数 97 浏览 0 评论 0原文

我需要从 call_history.db 读取日期列。我用sqlite数据库浏览器打开它。但我读不懂。因为它说关于日期列的“1303826968”。如何在“现实生活”中读取或转换它

i need to read the date column from call_history.db . i opened it with sqlite database browser. but i can't read it. because it says like "1303826968" about date column. how can read it or convert it in "real life"

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

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

发布评论

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

评论(2

原来分手还会想你 2024-11-12 03:05:56

1303826968 是自 1970 年 1 月 1 日以来的秒数。

NSDate *d = [[NSDate alloc] initWithTimeIntervalSince1970:1303826968];
NSLog(@"Date: %@", d);
// Will output: 2011-04-26 14:09:28 +0000  

1303826968 is the number of seconds since January 1, 1970.

NSDate *d = [[NSDate alloc] initWithTimeIntervalSince1970:1303826968];
NSLog(@"Date: %@", d);
// Will output: 2011-04-26 14:09:28 +0000  
挽清梦 2024-11-12 03:05:56

您也可以在 SQLite 提示符下将 unix 纪元时间戳转换为本地时间。

sqlite> select datetime(1303826968, 'unixepoch', 'localtime');
2011-04-26 10:09:28

日期和时间函数中搜索字符串“unix”。

You can convert unix epoch timestamps to local time at the SQLite prompt, too.

sqlite> select datetime(1303826968, 'unixepoch', 'localtime');
2011-04-26 10:09:28

Search Date and Time functions for the string "unix".

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