gpt4 book ai didi

android - 格式化时间需要 API 错误

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

我尝试在我的模型类中格式化时间。它需要第一行,否则会发生错误。谁能帮忙?

@RequiresApi(api = Build.VERSION_CODES.N)
public String getFormattedTime() {
SimpleDateFormat formatter = new SimpleDateFormat("h a");
// Visit this link for demanded Date&Time formats
// https://developer.android.com/reference/java/text/SimpleDateFormat.html
formatter.setTimeZone(TimeZone.getTimeZone(getTimeZone()));
// Here requires a method to set the TimeZone in Main Activity (info gotten from online
// resources database)
Date dateTime = new Date(getTime() * 1000);
return formatter.format(dateTime);
}

最佳答案

您正在使用这个 SimpleDateFormat位于以下包下

android.icu.text.SimpleDateFormat 

要求 API 级别为 24 或更高。尝试使用这个 SimpleDateFormat而不是在

java.text.DateFormat

关于android - 格式化时间需要 API 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39618165/

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