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

溫馨提示×

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
武山县| 襄樊市| 武乡县| 邹城市| 深水埗区| 彭山县| 南漳县| 满洲里市| 平罗县| 泸西县| 台安县| 德江县| 寿光市| 苏尼特左旗| 社旗县| 通海县| 宜兴市| 浏阳市| 合江县| 岐山县| 铜川市| 勐海县| 沙坪坝区| 子长县| 锦屏县| 通州区| 法库县| 林芝县| 阿图什市| 西乌| 镇远县| 日照市| 石泉县| 宁陵县| 广西| 勐海县| 荥阳市| 乌鲁木齐市| 普宁市| 讷河市| 湘潭县|