📜  Java中的 LocalDateTime toString() 方法及示例

📅  最后修改于: 2022-05-13 01:54:19.075000             🧑  作者: Mango

Java中的 LocalDateTime toString() 方法及示例

LocalDateTime 类toString()方法用于获取此 LocalDateTime 的 String 表示形式。此方法派生自 Object Class,其行为方式类似。

句法:

public String toString()

参数:此方法不带参数。

返回:此方法返回一个字符串值,它是此 LocalDateTime 的字符串表示形式。

下面的程序说明了 LocalDateTime.toString() 方法:

方案一:

// Program to illustrate the toString() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Get the LocalDateTime instance
        LocalDateTime dt = LocalDateTime.now();
  
        // Get the String representation of this LocalDateTime
        // using toString() method
        System.out.println(dt.toString());
    }
}
输出:
2018-11-30T10:16:26.939

方案二:

// Program to illustrate the toString() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Get the LocalDateTime instance
        LocalDateTime dt
            = LocalDateTime
                  .parse("2018-11-03T12:45:30");
  
        // Get the String representation of this LocalDateTime
        // using toString() method
        System.out.println(dt.toString());
    }
}
输出:
2018-11-03T12:45:30

参考: https: Java/time/LocalDateTime.html#toString()