请问JAVA中获取系统当前时间该怎么写
publicstaticvoidmain(stringargs[]){
//new一个date对象
dated=newdate();
longt=d.gettime();//获取当前的毫秒数
t+=(6*24*60*60*1000);//当前毫秒数加上一天的毫秒数(1*24*60*60*1000)
d.settime(t);//将总毫秒数重新赋值给date对象
system.out.println(d);//现在的d就是当前时间加上一天后的时间对象
//以下是将时间格式化输出的日期
stringsd=newsimpledateformat("yyyy-mm-ddhh:mm:ss").format(d);
system.out.println(sd);
}
一. 获取当前系统时间和日期并格式化输出:
import java.util.Date;
import java.text.SimpleDateFormat;
public class NowString {
public static void main(String[] args) {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//设置日期格式
System.out.println(df.format(new Date()));// new Date()为获取当前系统时间
}
}
java编程之怎样把Long转换成Date的日期格式
/** * 把毫秒转化成日期 * @param dateFormat(日期格式,例如:MM/ dd/yyyy HH:mm:ss) * @param millSec(毫秒数) * @return */ private String transferLongToDate(String dateFormat,Long millSec){ SimpleDateFormat sdf = new SimpleDateFormat(dateFormat)
; Date date= new Date(millSec)
; return sdf.format(date); }