給定一個日期格式的字符串,任務是將這個字符串轉換為實際的日期。這裏的主要概念是有助於轉換的parse()方法。
示例:
Input : string = "2018-10-28T15:23:01Z" Output: 2018-10-28T15:23:01Z Input : string = "28 October, 2018" Output: 2018-10-28
將字符串轉換為日期的不同方法
- 使用即時課程
- 使用DateTimeFormatter類
- 使用SimpleDateFormat類
Tip: Must Read the articles DateFormat class and SimpleDateFormat Class.
現在我們將上述方法一一討論如下:
java.time 包中的即時類提供納秒精度。它與 Date 類類似,但準確性更高。
方法:
- 獲取要轉換的字符串。
- 創建一個空的即時時間戳對象。
- 使用 Instant.parse() 方法將字符串轉換為日期。
- 如果轉換成功,則打印日期。
- 如果未成功轉換,則拋出DateTimeParseException。
示例
Java
// Java Program to Convert String to Date
// Using Instant Class
// Importing required classes
import java.time.Instant;
import java.time.format.DateTimeParseException;
// Main class
class GFG {
// Method
// To convert String to Date
public static Instant getDateFromString(String string)
{
// Creating an instant object
Instant timestamp = null;
// Parsing the string to Date
timestamp = Instant.parse(string);
// Returning the converted timestamp
return timestamp;
}
// Method 2
// Main driver method
public static void main(String[] args)
{
// Getting the string
String string = "2018-10-28T15:23:01Z";
// Try block to check for exceptions
try {
// Getting the Date from String by
// creating object of Instant class
Instant timestamp = getDateFromString(string);
// Printing the converted date
System.out.println(timestamp);
}
// Catch block to handle exceptions
catch (DateTimeParseException e) {
// Throws DateTimeParseException
// if the string cannot be parsed
System.out.println("Exception: " + e);
}
}
}
輸出:
2018-10-28T15:23:01Z
方法:
- 獲取要轉換的字符串和所需的格式。
- 創建一個空的 LocalDate 對象。
- 使用 LocalDate.parse() 方法將字符串轉換為日期。
- 如果轉換成功,則打印日期
- 如果字符串模式無效,則拋出IllegalArgumentException。
- 如果未成功轉換,則拋出DateTimeParseException。
例子:
Java
// Java program to convert String to Date
// Using DateTimeFormatter Class
// Importing required classes
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeParseException;
// Main class
class GFG {
// Method 1
// To convert String to Date
public static LocalDate
getDateFromString(String string,
DateTimeFormatter format)
{
// Converting the string to date
// in the specified format
LocalDate date = LocalDate.parse(string, format);
// Returning the converted date
return date;
}
// Method 2
// Main driver method
public static void main(String[] args)
{
// Getting the custom string input
String string = "28 October, 2018";
// Getting the format by creating an object of
// DateTImeFormatter class
DateTimeFormatter format
= DateTimeFormatter.ofPattern("d MMMM, yyyy");
// Try block to check for exceptions
try {
// Getting the Date from String
LocalDate date
= getDateFromString(string, format);
// Printing the converted date
System.out.println(date);
}
// Block 1
// Catch block to handle exceptions occurring
// if the String pattern is invalid
catch (IllegalArgumentException e) {
// Display the exception
System.out.println("Exception: " + e);
}
// Block 2
// If the String was unable to be parsed
catch (DateTimeParseException e) {
// Display the exception
System.out.println("Exception: " + e);
}
}
}
輸出:
2018-10-28
方法三: 使用SimpleDateFormat類
方法:
- 獲取字符串輸入並將其存儲到字符串中
- 引用SimpleDateFormat類創建Date類的對象
- 將日期格式解析為它。
- 打印相應的日期。
例子:
Java
// Java Program to Convert String to Date
// Using SimpleDateFormat class
// Importing required classes
import java.text.SimpleDateFormat;
import java.util.Date;
// Main class
class GFG {
// Main driver method
public static void main(String[] args) throws Exception
{
// Custom string as input
String strDate = "29/12/96";
// Creating an object of Date class with reference
// to SimpleDateFormat class and
// lately parsing the above string into it
Date date = new SimpleDateFormat("dd/mm/yyyy")
.parse(strDate);
// Print and display the date corresponding
// to above input string
System.out.print(strDate + " " + date);
}
}
輸出
29/12/96 Fri Jan 29 00:12:00 UTC 96
輸出:亦當。在終端運行,如下:
相關用法
- Java String轉Date用法及代碼示例
- Java String轉Double用法及代碼示例
- Java String轉ArrayList用法及代碼示例
- Java String轉InputStream用法及代碼示例
- Java String轉Short用法及代碼示例
- Java String轉Byte用法及代碼示例
- Java String轉Int用法及代碼示例
- Java String轉Object用法及代碼示例
- Java String轉Float用法及代碼示例
- Java String轉Long用法及代碼示例
- Java String轉Boolean用法及代碼示例
- Java String轉Character用法及代碼示例
- Java String轉LocalDate用法及代碼示例
- Java String轉UUID用法及代碼示例
- Java String轉InetAddress用法及代碼示例
- Java String轉Timestamp用法及代碼示例
- Java String轉BigInteger用法及代碼示例
- Java String轉Integer Array用法及代碼示例
- Java String轉IntStream用法及代碼示例
- Java String轉Float Value用法及代碼示例
- Java String轉String Array用法及代碼示例
- Java String compareToIgnoreCase()用法及代碼示例
- Java String compareTo()用法及代碼示例
- Java String split()用法及代碼示例
- Java String length()用法及代碼示例
注:本文由純淨天空篩選整理自RishabhPrabhu大神的英文原創作品 Java Program to Convert String to Date。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。