如何通过字符串来生成Date类型的对象
如何通过字符串来生成Date类型的对象?像是我要生成2008年1月1日的date对象,
Date date=new Date(str); 这里的str应该是怎么写啊
------解决方案--------------------java.util.Date里在JDK1.4版本中对于string型的构造函数已经不提倡了,如果非要写的话如下:Date date=new Date( "2008-01-01 ");
------解决方案--------------------GregorianCalendar calendar = new GregorianCalendar();
calendar.set(2008, 10, 1); //(年,月,日) 月从0开始
Date date = calendar.getTime();