首頁 > Java > java教程 > 主體

如何使用Java將字串解析為不同格式的日期?

Patricia Arquette
發布: 2024-11-24 10:04:15
原創
472 人瀏覽過

How Can I Parse Strings into Dates with Different Formats Using Java?

使用 Java 將字串解析為各種格式的日期

將字串解析為日期是程式設計中常見的任務。然而,表示日期的字串可以有多種格式,這可能會導致轉換的複雜性。本文解決了使用 Java 將字串轉換為不同格式的日期的挑戰。

問題:

在「中」有一個類似於「19/05/2009」的字串dd/MM/yyyy」格式,並希望將其轉換為“yyyy-MM-dd”格式的Date物件

解決方案:

SimpleDateFormat 是一個Java 類,可以根據特定模式格式化和解析日期。

import java.text.ParseException;
import java.text.SimpleDateFormat;

class StringToDateConversion {

    public static void main(String[] args) throws ParseException {
        // Define the input string in "dd/MM/yyyy" format
        String fromDate = "19/05/2009";

        // Create SimpleDateFormat objects for both input and output formats
        SimpleDateFormat fromUser = new SimpleDateFormat("dd/MM/yyyy");
        SimpleDateFormat myFormat = new SimpleDateFormat("yyyy-MM-dd");

        // Parse the input string into a Date object
        Date parsedDate = fromUser.parse(fromDate);

        // Reformat the Date object into the desired "yyyy-MM-dd" format
        String reformattedStr = myFormat.format(parsedDate);

        // Print the reformatted string
        System.out.println(reformattedStr);
    }
}
登入後複製

此程式碼示範了轉換過程:

  1. 初始化兩個SimpleDateFormat 對象,fromUser 用於讀取使用者輸入的日期「dd/MM/yyyy」格式和myFormat 用於表示「yyyy-MM-dd」中的輸出日期
  2. 使用fromUser.parse(fromDate) 將輸入字串解析為Date 物件。物件重新格式化為“yyyy-MM-” dd”格式並將其指派給reformattedStr。
  3. 按照以下步驟,您可以成功轉換具有不同格式的字串Java 中的日期格式轉換為所需的 Date 物件。

以上是如何使用Java將字串解析為不同格式的日期?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板