中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

java中日期格式如何轉換

小億
75
2023-11-03 22:39:55
欄目: 編程語言

在Java中,可以使用SimpleDateFormat類來進行日期格式的轉換。以下是一個示例代碼,演示了如何將一個日期字符串轉換成另一種日期格式的字符串:

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

public class DateFormatExample {

    public static void main(String[] args) {
        String dateString = "2023-05-15";
        String sourceFormat = "yyyy-MM-dd";
        String targetFormat = "dd/MM/yyyy";

        try {
            SimpleDateFormat sourceDateFormat = new SimpleDateFormat(sourceFormat);
            SimpleDateFormat targetDateFormat = new SimpleDateFormat(targetFormat);

            Date date = sourceDateFormat.parse(dateString);
            String formattedDateString = targetDateFormat.format(date);

            System.out.println("原日期字符串:" + dateString);
            System.out.println("轉換后的日期字符串:" + formattedDateString);
        } catch (ParseException e) {
            e.printStackTrace();
        }
    }
}

在上面的示例中,首先定義了一個日期字符串dateString,其格式為yyyy-MM-dd。然后,定義了源日期格式sourceFormat和目標日期格式targetFormat。接下來,創建了兩個SimpleDateFormat對象,用于解析和格式化日期。使用sourceDateFormat對象的parse()方法將日期字符串解析為Date對象。然后,使用targetDateFormat對象的format()方法將Date對象格式化為目標日期格式的字符串。最后,將原日期字符串和轉換后的日期字符串打印出來。

運行上面的代碼,輸出結果如下:

原日期字符串:2023-05-15
轉換后的日期字符串:15/05/2023

這樣就完成了日期格式的轉換。根據實際需求,可以修改源日期格式和目標日期格式,以及要轉換的日期字符串。

0
江都市| 镇坪县| 鸡西市| 喜德县| 中江县| 永丰县| 阿巴嘎旗| 察隅县| 偃师市| 衡水市| 大方县| 磐安县| 德江县| 无极县| 寿光市| 象山县| 南召县| 措勤县| 乃东县| 安国市| 日喀则市| 板桥市| 松桃| 司法| 灌云县| 兴业县| 平原县| 华容县| 泰宁县| 蛟河市| 邮箱| 永福县| 进贤县| 镶黄旗| 大姚县| 沈丘县| 湾仔区| 崇左市| 开原市| 资中县| 亚东县|