admin管理员组文章数量:1026989
datetime parse java
在LocalDateTime类中,根据传递给它的参数,有两种类型的parse()方法。
parse(CharSequence text)
LocalDateTime类的parse()方法用于从作为参数传递的字符串(例如“ 2018-10-23T17:19:33”)中获取LocalDateTime的实例。该字符串必须具有有效的日期时间,并使用DateTimeFormatter.ISO_LOCAL_DATE_TIME进行解析。
用法:
public static LocalDateTime parse(CharSequence text)
参数:此方法仅接受一个参数文本,这是要在LocalDateTime中解析的文本。它不能为空。
返回值:此方法返回LocalDateTime,它是解析的本地日期时间。
异常:如果无法解析文本,则此方法将引发DateTimeParseException。
以下示例程序旨在说明parse()方法:
示例1:
// Java program to demonstrate
// LocalDateTime.parse() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create an LocalDateTime object
LocalDateTime lt
= LocalDateTime
.parse("2018-12-30T19:34:50.63");
// print result
System.out.println("LocalDateTime : "
+ lt);
}
}
输出:
LocalDateTime : 2018-12-30T19:34:50.630
parse(CharSequence text, DateTimeFormatter formatter)
LocalDateTime类的parse()方法用于从使用特定格式器传递为参数的字符串(例如“ 2018-10-23T17:19:33”)中获取LocalDateTime实例。日期时间使用特定格式器进行解析。
用法:
public static LocalDateTime parse(CharSequence text,
DateTimeFormatter formatter)
参数:此方法接受两个参数text(即要解析的文本)和formatter(要使用的格式化程序)。
返回值:此方法返回LocalDateTime,它是解析的本地日期时间。
异常:如果无法解析文本,则此方法将引发DateTimeParseException。
以下示例程序旨在说明parse()方法:
示例1:
// Java program to demonstrate
// LocalDateTime.parse() method
import java.time.*;
import java.time.format.*;
public class GFG {
public static void main(String[] args)
{
// create a formater
DateTimeFormatter formatter
= DateTimeFormatter.ISO_LOCAL_DATE_TIME;
// create an LocalDateTime object and
LocalDateTime lt
= LocalDateTime
.parse("2018-12-30T19:34:50.63",
formatter);
// print result
System.out.println("LocalDateTime : "
+ lt);
}
}
输出:
LocalDateTime : 2018-12-30T19:34:50.630
datetime parse java
在LocalDateTime类中,根据传递给它的参数,有两种类型的parse()方法。
parse(CharSequence text)
LocalDateTime类的parse()方法用于从作为参数传递的字符串(例如“ 2018-10-23T17:19:33”)中获取LocalDateTime的实例。该字符串必须具有有效的日期时间,并使用DateTimeFormatter.ISO_LOCAL_DATE_TIME进行解析。
用法:
public static LocalDateTime parse(CharSequence text)
参数:此方法仅接受一个参数文本,这是要在LocalDateTime中解析的文本。它不能为空。
返回值:此方法返回LocalDateTime,它是解析的本地日期时间。
异常:如果无法解析文本,则此方法将引发DateTimeParseException。
以下示例程序旨在说明parse()方法:
示例1:
// Java program to demonstrate
// LocalDateTime.parse() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create an LocalDateTime object
LocalDateTime lt
= LocalDateTime
.parse("2018-12-30T19:34:50.63");
// print result
System.out.println("LocalDateTime : "
+ lt);
}
}
输出:
LocalDateTime : 2018-12-30T19:34:50.630
parse(CharSequence text, DateTimeFormatter formatter)
LocalDateTime类的parse()方法用于从使用特定格式器传递为参数的字符串(例如“ 2018-10-23T17:19:33”)中获取LocalDateTime实例。日期时间使用特定格式器进行解析。
用法:
public static LocalDateTime parse(CharSequence text,
DateTimeFormatter formatter)
参数:此方法接受两个参数text(即要解析的文本)和formatter(要使用的格式化程序)。
返回值:此方法返回LocalDateTime,它是解析的本地日期时间。
异常:如果无法解析文本,则此方法将引发DateTimeParseException。
以下示例程序旨在说明parse()方法:
示例1:
// Java program to demonstrate
// LocalDateTime.parse() method
import java.time.*;
import java.time.format.*;
public class GFG {
public static void main(String[] args)
{
// create a formater
DateTimeFormatter formatter
= DateTimeFormatter.ISO_LOCAL_DATE_TIME;
// create an LocalDateTime object and
LocalDateTime lt
= LocalDateTime
.parse("2018-12-30T19:34:50.63",
formatter);
// print result
System.out.println("LocalDateTime : "
+ lt);
}
}
输出:
LocalDateTime : 2018-12-30T19:34:50.630
本文标签: datetime parse java
版权声明:本文标题:datetime parse java 内容由热心网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://it.en369.cn/IT/1694665500a254788.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论