LocalDateTime类的toString()方法用于获取此LocalDateTime的字符串表示形式。此方法派生自Object Class,其行为类似。
用法:
public String toString()
参数:此方法不带参数。
返回值:此方法返回一个String值,它是此LocalDateTime的String表示形式。
以下示例程序旨在说明LocalDateTime.toString()方法:
示例1:
// 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
示例2:
// 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://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#toString()
相关用法
- Java LocalDateTime now()用法及代码示例
- Java LocalDateTime plus()用法及代码示例
- Java LocalDateTime with()用法及代码示例
- Java LocalDateTime until()用法及代码示例
- Java LocalDateTime from()用法及代码示例
- Java LocalDateTime isAfter()用法及代码示例
- Java LocalDateTime getDayOfWeek()用法及代码示例
- Java LocalDateTime getDayOfMonth()用法及代码示例
- Java LocalDateTime equals()用法及代码示例
- Java LocalDateTime getDayOfYear()用法及代码示例
- Java LocalDateTime getHour()用法及代码示例
- Java LocalDateTime plusHours()用法及代码示例
- Java LocalDateTime plusMinutes()用法及代码示例
- Java LocalDateTime isEqual()用法及代码示例
- Java LocalDateTime isBefore()用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 LocalDateTime toString() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。