1. 字符串转Date类型数据
SimpleDateFormat sim = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String str="2011-5-31 14:40:50";
Date d=sim.parse(str);
1. 字符串转Date类型数据
SimpleDateFormat sim = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
String str="2011-5-31 14:40:50";
Date d=sim.parse(str);