近期在维护一个老项目,前台传过来的日期类型是一个String "2014-7-30"这样,数据库设计是Date类型,所以根据时间做查询肯定需要将String类型转化为Date类型,ok!
那么我们看这段代码:
1
2
3
4
5
|
public
static
void
main(String[] args)
throws
Exception {
String str=
"2014-7-30"
;
SimpleDateFormat f=
new
SimpleDateFormat(
"yyyyMMdd"
);
System.out.println(f.format(f.parse(str)));
}
|
这个应该是网上各大网友互相抄袭的转化方式?我找了几张博客,都是这样写的。but
运行实际结果呢?
没错呀,先通过parse转化为Date类型,然后将Date类型格式化啊,但是大家注意没?SimpleDateFormat.parse()方法返回的是一个Date类型数据,也就是说他会按照你自定义的格式类型进行转换成Date类型,那么显然不是我们想要的。
那么我们再看DateFormat.getDateInstance()返回的值呢?日期格式型的Date数据。
所以假如,你自定义的时间类型和String 格式不一致,就会转换出错。ok!
代码如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
package
jiki.test;
import
java.text.DateFormat;
import
java.text.SimpleDateFormat;
import
java.util.Date;
public
class
Test3 {
public
static
void
main(String[] args)
throws
Exception {
String str=
"2014-7-30"
;
// String str = "2013-01-21 15:10:20";
// Date date = DateFormat.getDateInstance().parse(str);
// System.out.println(date);
// SimpleDateFormat f=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
// SimpleDateFormat f=new SimpleDateFormat("yyyy-MM-dd");
SimpleDateFormat f=
new
SimpleDateFormat(
"yyyyMMdd"
);
System.out.println(f.format(f.parse(str)));
// System.out.println(f.parse(str));
// getTime(str);
}
/*public static void getTime(final String str) throws Exception{
Date date = DateFormat.getDateInstance().parse(str);
System.out.println(date);
SimpleDateFormat f=new SimpleDateFormat("yyyyMMdd");
System.out.println(f.format(date));
}*/
}
|
为了讲解随手写的小玩意,大家可以自己运行看一下!免得犯错误!
本文转自 小夜的传说 51CTO博客,原文链接:http://blog.51cto.com/1936625305/1533412,如需转载请自行联系原作者