Android API-21 中 DateTimeFormatter 的替代方法

An alternative to DateTimeFormatter in Android API-21

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

这是错误:

java.lang.NoClassDefFoundError: Failed resolution of: Ljava/time/format/DateTimeFormatter;

这是受影响的代码:

@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;
}

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

android {
  compileOptions {
    coreLibraryDesugaringEnabled true
  }
}

你需要一个依赖项

dependencies {
  coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.9'
}