错误信息:
java.lang.NoClassDefFoundError: Failed resolution of: Ljava/time/LocalDate;
这个错误是由于在Android中没有找到java.time.LocalDate
类导致的,原因是java.time
这个包是在Java 8中引入的,而通常Android只支持Java 7的部分特性,不支持Java 8的新特性,因此在Android中无法直接使用java.time
包中的类(2021年5月以前的IDEA或2020年8月以前的AS)。
解决这个问题有两种方法:
-
使用Android自带的
java.util.Date
类代替java.time.LocalDate
类。 -
在Android项目中使用Java 8的新特性,需要在
build.gradle
文件中添加以下配置:
android { compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } // ...}dependencies { implementation 'com.android.tools:desugar_jdk_libs:1.1.5' // ...}
然后在代码中引入java.time
包:
import java.time.LocalDate;import java.time.format.DateTimeFormatter;
注意:使用此方法需要在Android Studio中使用3.0及以上版本,并且需要在设备上运行Android 5.0及以上版本的操作系统。
使用java.util.Date
代替java.time.LocalDate
的方法如下:
Date date = new Date();SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");String parsedDateString = sdf.format(date);txtDate.setText(parsedDateString);
来源地址:https://blog.csdn.net/wh445306/article/details/130169579