试图在数据库中获取一些日期存储,但是我遇到了解析错误。 这就是我得到的:
DateFormat dateFormat = new SimpleDateFormat("E MMM dd HH:mm:ss Z yyyy");
date = dateFormat.parse("Wed Dec 19 10:21:46 UYT 2018");
我得到了错误
java.text.ParseException: Unparseable date: "Wed Dec 19 10:21:46 UYT 2018"
答案 0 :(得分:0)
试试看,“ EEE”对于星期几的打印更为准确,您还应该使用默认的区域设置
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Locale;
public class Main {
public static void main(String[] args) throws ParseException {
DateFormat dateFormat = new SimpleDateFormat("EEE MMM dd HH:mm:ss Z yyyy", Locale.getDefault());
final Date date = dateFormat.parse("Wed Dec 19 10:21:46 UYT 2018");
}
}