java获取当前时间的年月日时分秒
解决方法:
/**
* 获取当前时间
*/
public static String getFomartDate(String format){
return new SimpleDateFormat(format).format(new Date());
}
例如,获取当前时间的年月日时分秒
String current_time=getFomartDate("yyyy-MM-dd HH:mm:ss")
java获取当前时间的年月日时分秒
解决方法:
/**
* 获取当前时间
*/
public static String getFomartDate(String format){
return new SimpleDateFormat(format).format(new Date());
}
例如,获取当前时间的年月日时分秒
String current_time=getFomartDate("yyyy-MM-dd HH:mm:ss")
有建议,请留言!