gpt4 book ai didi

java - SQLite3 和 System.currentTimeMillis()

转载 作者:行者123 更新时间:2023-11-29 08:16:15 25 4
gpt4 key购买 nike

我想使用 SQLite strftime() 或任何其他函数生成与 java 中的 System.currentTimeMillis() 函数完全相同的值。有什么办法吗?

SELECT strftime('%s','now'); 

生成当前时间但不考虑毫秒而是秒。我想要精确到毫秒。

EDIT 基于 Axarydax 答案

SELECT strftime('%s%f','now');

返回 129491124808.428其中 %f 返回 08.428 我可以将它四舍五入到 129491124808

编辑 2

ROUND(strftime('%s%f','now'))

返回 129491124808.0 我不希望 .0 在最后

最佳答案

根据 this documentation , 格式化字符串 %f 打印小数秒 SS.SSS。

关于java - SQLite3 和 System.currentTimeMillis(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4678495/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com