当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java LocalTime parse()用法及代码示例


在LocalTime类中,根据传递给它的参数,有两种类型的parse()方法。

parse(CharSequence text)

LocalTime类的parse()方法用于从作为参数传递的字符串(例如“ 10:15:45”)中获取LocalTime的实例。该字符串必须具有有效的日期时间,并使用DateTimeFormatter.ISO_LOCAL_TIME进行了解析。

用法:


public static LocalTime parse(CharSequence text)

参数:此方法仅接受一个参数文本,该参数文本是在LocalTime中解析的文本。它不能为空。

返回值:此方法返回LocalTime,它是解析的本地日期时间。

异常:如果无法解析文本,则此方法将引发DateTimeParseException。

以下示例程序旨在说明parse()方法:
示例1:

// Java program to demonstrate 
// LocalTime.parse() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an LocalTime object 
        LocalTime lt 
            = LocalTime.parse("10:15:45"); 
  
        // print result 
        System.out.println("LocalTime : "
                           + lt); 
    } 
}
输出:
LocalTime : 10:15:45

parse(CharSequence text, DateTimeFormatter formatter)

LocalTime类的parse()方法用于从使用特定格式器作为参数传递的字符串(例如“ 10:15:45”)中获取LocalTime的实例。日期时间使用特定格式器进行解析。

用法:

public static LocalTime parse(CharSequence text,
                              DateTimeFormatter formatter)

参数:此方法接受两个参数text(即要解析的文本)和formatter(要使用的格式化程序)。

返回值:此方法返回LocalTime,它是解析的本地日期时间。

异常:如果无法解析文本,则此方法将引发DateTimeParseException。

以下示例程序旨在说明parse()方法:
示例1:

// Java program to demonstrate 
// LocalTime.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_TIME; 
  
        // create an LocalTime object and 
        LocalTime lt 
            = LocalTime 
                  .parse("10:15:45", 
                         formatter); 
  
        // print result 
        System.out.println("LocalTime : "
                           + lt); 
    } 
}
输出:
LocalTime : 10:15:45

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#parse(java.lang.CharSequence)
https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#parse(java.lang.CharSequence,java.time.format.DateTimeFormatter)



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 LocalTime parse() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。