国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JSP > 正文

Java輸出系統當前的日期(年月日時分秒毫秒)

2020-07-27 21:36:24
字體:
來源:轉載
供稿:網友
復制代碼 代碼如下:

package test.remote.tools.combine;

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

public class TestOutDate
{
public static void main(String[] args)
{
//method 1
Calendar nowtime = new GregorianCalendar();
String strDateTime="["+String.format("%04d", nowtime.get(Calendar.YEAR))+"/"+
String.format("%02d", nowtime.get(Calendar.MONTH))+"/" +
String.format("%02d", nowtime.get(Calendar.DATE))+" " +
String.format("%02d", nowtime.get(Calendar.HOUR))+":" +
String.format("%02d", nowtime.get(Calendar.MINUTE))+":" +
String.format("%02d", nowtime.get(Calendar.SECOND))+"." +
String.format("%03d", nowtime.get(Calendar.MILLISECOND))+"]";
System.out.println(strDateTime);

//method 2
String msg="";
Date date = new Date();
SimpleDateFormat sdf = new SimpleDateFormat("YYYY/MM/dd HH:mm:ss.SSS");
msg+="["+sdf.format(date)+"]";

System.out.println(msg);
}
}

運行結果:
[2013/08/09 05:54:32.578]
[2013/09/09 17:54:32.625]
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 颍上县| 从化市| 北碚区| 永平县| 巴青县| 陆良县| 琼结县| 临夏县| 南雄市| 抚顺县| 洪湖市| 新源县| 庆云县| 宜城市| 铜川市| 平凉市| 介休市| 颍上县| 富锦市| 灵川县| 渝北区| 尉氏县| 余江县| 周口市| 嘉义县| 崇礼县| 花莲县| 兰考县| 英山县| 六枝特区| 都江堰市| 靖安县| 乌兰察布市| 雷山县| 菏泽市| 雷波县| 离岛区| 甘谷县| 遵义县| 新沂市| 五台县|