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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。