DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
df.parse("ABCDEFG");
这样就可以了,如果在js里面
new Date(tenderResult.createDate).format('Y年m月d日');
SimpleDateFormat类中的parse()方法可以、、
SimpleDateFormat 的parse()方法
通过 SimpleDateFormat这个类转
String pattern = "yyy-MM-dd HH:mm:ss"; //首先定义时间格式
SimpleDateFormat format = new SimpleDateFormat(pattern);//然后创建一个日期格式化类
String toConvertString = "2012-11-01 10:10:05";
Date convertResult = null;
try {
convertResult = format.parse(toConvertString);
} catch (ParseException e) {
e.printStackTrace();
}
System.out.println(convertResult);
执行结果为
Thu Nov 01 10:10:05 CST 2012