在我的应用程序中,时间将存储一段时间并存储在数据库中,任何人都可以帮我解决问题。
答案 0 :(得分:0)
在数据库中存储时间我希望这段代码可以帮助你。
SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
"HH:mm:ss");
Date date = new Date();
在数据库中存储时使用它。
simpleDateFormat.format(date).toString()