http://blog.csdn.net/sinat_31500569/article/details/65784475

来源:互联网 发布:iphone用mac设置铃声 编辑:程序博客网 时间:2024/06/04 17:40
崩溃错误:
java.lang.NoClassDefFoundError: Failed resolution of: Landroid/icu/text/SimpleDateFormat;

报错语句
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
解决
import android.icu.text.SimpleDateFormat;
换成
import java.text.SimpleDateFormat;

阅读全文
0 0
原创粉丝点击