给定一个日期格式的字符串,任务是将这个字符串转换为实际的日期。这里的主要概念是有助于转换的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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。