91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java怎么獲取當前年月日時間戳

小億
195
2024-05-14 15:53:14
欄目: 編程語言

在 Java 中,可以使用 System.currentTimeMillis() 方法來獲取當前時間戳,即當前時間與基準時間(1970 年 1 月 1 日 00:00:00 GMT)之間的毫秒數。如果要獲取當前的年月日時間戳,可以先獲取當前時間的毫秒數,然后根據需要進行轉換。

下面是一個示例代碼,可以獲取當前的年月日時間戳:

import java.util.Calendar;

public class CurrentTimestamp {
    public static void main(String[] args) {
        // 獲取當前時間的毫秒數
        long currentTimeMillis = System.currentTimeMillis();

        // 創建一個 Calendar 對象,并設置為當前時間
        Calendar calendar = Calendar.getInstance();
        calendar.setTimeInMillis(currentTimeMillis);

        // 獲取當前的年、月、日
        int year = calendar.get(Calendar.YEAR);
        int month = calendar.get(Calendar.MONTH) + 1; // 月份是從 0 開始的,需要加 1
        int day = calendar.get(Calendar.DAY_OF_MONTH);

        // 輸出當前的年月日時間戳
        System.out.println("當前的年月日時間戳:" + year + "-" + month + "-" + day);
    }
}

通過上面的代碼,可以獲取當前的年月日時間戳,并輸出到控制臺中。

0
嘉兴市| 高雄县| 通江县| 恩施市| 军事| 汝南县| 余庆县| 化州市| 徐闻县| 西乌珠穆沁旗| 新源县| 安陆市| 赤城县| 武城县| 泸水县| 梁山县| 云南省| 乌拉特中旗| 剑川县| 崇明县| 寿光市| 高州市| 商水县| 莲花县| 望城县| 正镶白旗| 淮南市| 湘潭县| 侯马市| 兴隆县| 丹凤县| 塔城市| 桑植县| 高尔夫| 得荣县| 长垣县| 沿河| 佛冈县| 长兴县| 正宁县| 张家口市|