当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java String转Date用法及代码示例


给定一个日期格式的字符串,任务是将此字符串转换为实际日期。这里的主要概念是有助于转换的 parse() 方法。

示例:

Input: string = "2018-10-28T15:23:01Z"
Output: 2018-10-28T15:23:01Z

Input: string = "28 October, 2018"
Output: 2018-10-28

方法:

  1. 使用即时课程
  2. 使用 DateTimeFormater 类
  3. 使用 SimpleDateFormat 类

现在让我们讨论

方法一:使用即时课程



java.time 包中的即时类提供纳秒精度。它类似于 Date 类,但准确性更高。

方法:

  1. 获取要转换的字符串。
  2. 创建一个空的即时时间戳对象
  3. 使用 Instant.parse() 方法将字符串转换为日期。
  4. 如果转换成功,则打印日期
  5. 如果未成功转换,则抛出 DateTimeParseException。

例:

Java


// Java Program to Convert String to Date
// 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

方法二:Java LocalDateTime parse()用法及代码示例

方法:

  1. 获取要转换的字符串和所需的格式。
  2. 创建一个空的 LocalDate 对象
  3. 使用 LocalDate.parse() 方法将字符串转换为日期。
  4. 如果转换成功,则打印日期
  5. 如果字符串模式无效,则抛出 IllegalArgumentException。
  6. 如果未成功转换,则抛出 DateTimeParseException。

示例

Java


// Java program to convert String to Date
// 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 tp 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 occuring
        // 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 类

程序:

  1. 获取字符串输入并将其存储到字符串中
  2. 参照 SimpleDateFormat 类创建 Date 类的对象
  3. 将日期格式解析为它。
  4. 打印相应的日期。

示例

Java


// Java Program to Convert String to Date
// 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);
    }
}

输出:




相关用法


注:本文由纯净天空筛选整理自RishabhPrabhu大神的英文原创作品 Convert String to Date in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。