获取系统日期和时间

import java.text.SimpleDateFormat;
import java.util.Date;


class DateTime{
private SimpleDateFormat sdf = null;
public String getDate(){
this.sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS");
return this.sdf.format(new Date());
}
public String getDateComplete(){
this.sdf = new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒SSS毫秒");
return this.sdf.format(new Date());
}
public String getTimeStamp(){
this.sdf = new SimpleDateFormat("yyyyMMdd日HHmmssSSS");
return this.sdf.format(new Date());
}
}


public class DateDemo1 {


public static void main(String[] args) {
// TODO Auto-generated method stub
DateTime dt = new DateTime();
System.out.println("系统日期:"+dt.getDate());
System.out.println("中文日期:"+dt.getDateComplete());
System.out.println("时间戳:"+dt.getTimeStamp());
}
}




/*
运行结果:
系统日期:2016-01-12 19:40:12.050
中文日期:2016年01月12日 19时40分12秒053毫秒
时间戳:20160112日194012055


*/

你可能感兴趣的:(系统时间,系统日期)