可以使用toString()
Java中LocalDateTime类中的方法获取LocalDateTime对象的字符串值。此方法不需要任何参数,它返回LocalDateTime对象的字符串值。
演示此的程序如下所示-
import java.time.*; public class Demo { public static void main(String[] args) { LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt.toString()); } }
输出结果
The LocalDateTime is: 2019-02-18T23:15:30
现在让我们了解上面的程序。
使用方法获得LocalDateTime的字符串值,toString()
然后打印该值。演示这的代码片段如下-
LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt.toString());