gpt4 book ai didi

android - 如何从本地时间转换为 utc?

转载 作者:行者123 更新时间:2023-11-29 17:23:23 24 4
gpt4 key购买 nike

<分区>

我发现有很多函数可以将 utc 时间转换为本地时间,但我没有找到如何将本地时间转换为 utc 时间?

这是从utc到本地使用的,如何编辑从本地获取utc?

     public static String timezoneAwareDate(String date){
// create simpledateformat for UTC dates in database
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm");
simpleDateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));

Date output;
// parse time
try{
output = simpleDateFormat.parse(date);
}catch (Exception e){
// return current time
output = new Date();
}

return output.toString();
}

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