当前位置: 技术问答>java相关
时间格式转换问题
来源: 互联网 发布时间:2015-05-05
本文导语: 如何将时间格式如“Mar 8, 2000 9:28:49 PM”的字符串, 转换为“2000-03-08 09:28:49”的字符串? | “Mar 8, 2000 9:28:49 PM”的字符串转换到Date类型中 用到的API: SimpleDateFormat df = new Simple...
如何将时间格式如“Mar 8, 2000 9:28:49 PM”的字符串,
转换为“2000-03-08 09:28:49”的字符串?
转换为“2000-03-08 09:28:49”的字符串?
|
“Mar 8, 2000 9:28:49 PM”的字符串转换到Date类型中
用到的API:
SimpleDateFormat df = new SimpleDateFormat(String fmt);
Date d = df.parse(String);
具体fmt怎么写,自己去看API吧
用到的API:
SimpleDateFormat df = new SimpleDateFormat(String fmt);
Date d = df.parse(String);
具体fmt怎么写,自己去看API吧
|
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
DateFormat df = DateFormat.getDateInstance();
Date d = df.parse("Mar 8, 2000 9:28:49 PM");
Date newDate = sdf.format(d);
DateFormat df = DateFormat.getDateInstance();
Date d = df.parse("Mar 8, 2000 9:28:49 PM");
Date newDate = sdf.format(d);
|
Date today=new Date();
DateFormate fmt=getDateTimeInstance(Loacal.SHORT,Local.CHINA);
String formatted=fmt.formate(today);
DateFormate fmt=getDateTimeInstance(Loacal.SHORT,Local.CHINA);
String formatted=fmt.formate(today);