如何将具有完整月份名称的日期转换为Java中的Date对象?这是我需要转换的样本日期:2002年12月6日。
感谢。
答案 0 :(得分:11)
String str = "6 December 2002";
DateFormat formatter = new SimpleDateFormat("dd MMM yyyy");
Date date = (Date)formatter.parse(str);
必须参加
答案 1 :(得分:1)
SimpleDateFormat sdf = new SimpleDateFormat("d MMMMM yyyy", Locale.US);
Date d = sdf.parse("6 December 2002");
System.out.println(d);