日期:2014-05-19 浏览次数:20662 次
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd"); String s = "20120512"; Date d = sdf.parse(s); //字符串转时间 String ss = sdf.format(new Date()); //时间转字符串 System.out.println(ss);
------解决方案--------------------
SimpleDateFormat里面的Date下的getTime方法,API上有可以查查
------解决方案--------------------
可以的
写个简单的方法就行了
//格式化日期
private static SimpleDateFormat s_format5 = new SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss");// 设置日期格式
/**
* 或取规定格式化的系统当前时间
*
* @return Date
*/
public static String getDataTime() {
Date date = new Date();
return s_format5.format(date);
}
之后你要添加的值调用getDateTime()方法即可得到
当然设置日期的格式那,你可以根据自己的需求而定。