标签: java simpledateformat
我发送有效日期(“1705”)并获得不同的解析日期(“1701”)
有关修复内容的任何帮助? 中间的打印显示有效日期。
SimpleDateFormat sdf = new SimpleDateFormat("YYMM"); System.out.println(exYear+exMonth); Date ccDate = sdf.parse(exYear+exMonth);
答案 0 :(得分:7)
y年份必须是小案
y
SimpleDateFormat sdf = new SimpleDateFormat("yyMM");
请参阅javadoc