首頁  >  文章  >  Java  >  如何在Java中將格式為dd/MM/yyyy的字串解析為dd/MM/yyyy的日期?

如何在Java中將格式為dd/MM/yyyy的字串解析為dd/MM/yyyy的日期?

WBOY
WBOY轉載
2023-08-29 19:13:061490瀏覽

如何在Java中將格式為dd/MM/yyyy的字串解析為dd/MM/yyyy的日期?

java.text 套件提供了一個名為 SimpleDateFormat 的類,用於以所需的方式(本地)格式化和解析日期。

此類的建構子之一接受表示所需日期格式的字串值和建構子 SimpleDateFormat 物件

此類的format() 方法接受 java.util.Date 物件並傳回目前物件表示的格式的日期/時間字符串。

因此,將日期字串解析為另一種日期格式 -

  • 取得輸入的日期字串。

  • 將其轉換為 java.util.Date 物件。

    >
  • 透過將所需的(新)格式作為字串傳遞給其建構函式來實例化 SimpleDateFormat 類別。

  • 透過以下方式呼叫 format() 方法:將上面取得的 Date 物件作為參數傳遞。

範例

 現場示範

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Scanner;
public class FormattingDate {
   public static Date StringToDate(String dob) throws ParseException {
      //Instantiating the SimpleDateFormat class
      SimpleDateFormat formatter = new SimpleDateFormat("dd-MM-yyyy");
      //Parsing the given String to Date object
      Date date = formatter.parse(dob);
      System.out.println("Date object value: "+date);
      return date;
   }
   public static void main(String args[]) throws ParseException {
      //Reading name and date of birth from the user
      Scanner sc = new Scanner(System.in);
      System.out.println("Enter your name: ");
      String name = sc.next();
      System.out.println("Enter your date of birth (dd-MM-yyyy): ");
      String dob = sc.next();
      //Converting String to Date
      Date date = FormattingDate.StringToDate(dob);
      System.out.println("Select format: ");
      System.out.println("a: MM-dd-yyyy || b: dd-MM-yyyy || c: yyyy-MM-dd ");
      char ch = sc.next().toCharArray()[0];;
      switch (ch) {
         case 'a':
            System.out.println("Date in the format: MM-dd-yyyy");
            System.out.println(new SimpleDateFormat("MM-dd-yyyy").format(date));
            break;
         case 'b':
            System.out.println("Date in in the format: dd-MM-yyyy");
            System.out.println(new SimpleDateFormat("dd-MM-yyyy").format(date));
            break;
         case 'c':
            System.out.println("Date in the format: yyyy-MM-dd");
            System.out.println(new SimpleDateFormat("yyyy-MM-dd").format(date));
            break;
         default:
            System.out.println("Model not found");
            break;
      }
   }
}

#輸出

Enter your name:
Krishna
Enter your date of birth (dd-MM-yyyy):
26-09-1989
Date object value: Tue Sep 26 00:00:00 IST 1989
Select format:
a: MM-dd-yyyy || b: dd-MM-yyyy || c: yyyy-MM-dd
a
Date in the format: MM-dd-yyyy
09-26-1989

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

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除