Android API-21 中 DateTimeFormatter 的替代方案

Dan*_*don 3 java android android-studio android-api-levels

我的应用程序在运行时崩溃了。我第一次构建和编译它时它有效,但现在不行了。我认为这是由于“DateTimeFormatter”无法在我当前的 api 级别 21 中使用。有解决方法吗?

这是错误:

java.lang.NoClassDefFoundError: Failed resolution of: Ljava/time/format/DateTimeFormatter;
Run Code Online (Sandbox Code Playgroud)

以下是受影响的代码:

@RequiresApi(api = Build.VERSION_CODES.O)
public boolean checkTimeAgainstCurrentTime(String time) throws ParseException {
    boolean isTime = false;
    DateTimeFormatter parser = DateTimeFormatter.ofPattern("h:mma", Locale.ENGLISH);
    DateTimeFormatter formatter = DateTimeFormatter.ofPattern("HH:mm");
    LocalTime theTime = LocalTime.parse(time, parser);
    Date time1 = new Date(System.currentTimeMillis());
    Date time2 = new SimpleDateFormat("HH:mm:ss").parse(theTime + ":00");
    time1.setHours(time2.getHours());
    time1.setMinutes(time2.getMinutes());
    SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss");
    dateFormat.setTimeZone(TimeZone.getTimeZone("UTC"));
    Date today = Calendar.getInstance().getTime();
    today.setHours(today.getHours()+8);
    if (today.after(time1)) {
        isTime = true;
    }
    // If true, means expired.
    return isTime;
}
Run Code Online (Sandbox Code Playgroud)

Moh*_*ari 7

您可以启用 API Desugaring 以实现向后兼容性,此处https://developer.android.com/studio/write/java8-support#library-desugaring是其说明,但本质上您必须添加一行代码,如图所示下面在应用程序级别build.gradle

android {
  compileOptions {
    coreLibraryDesugaringEnabled true
  }
}
Run Code Online (Sandbox Code Playgroud)

并且你需要一个依赖

dependencies {
  coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.9'
}
Run Code Online (Sandbox Code Playgroud)