gpt4 book ai didi

java - 将 dateTime 转换为 int

转载 作者:行者123 更新时间:2023-12-01 17:32:42 26 4
gpt4 key购买 nike

我让用户输入日期和时间。我需要将其更改为 int 以适合 sqlight 数据库。我尝试将其解析为字符串,然后解析为 int,但这没有任何想法?

     Time newTime= new Time();
newTime.hour=fmtTime.HOUR0_FIELD;
newTime.minute=fmtTime.MINUTE_FIELD;
newTime.monthDay=fmtDate.DAY_OF_WEEK_IN_MONTH_FIELD;
newTime.month=fmtDate.MONTH_FIELD;
newTime.year=fmtDate.YEAR_FIELD;
int currentTime=newTime.get;//how would I convert newTime to an int?

最佳答案

currentTime = (int) (newTime.toMillis() / 1000L);

关于java - 将 dateTime 转换为 int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9475031/

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