LocalTime 格式化() 方法
在 Java 的 LocalTime 类中,可以使用 format() 方法采用指定的格式设置器对 LocalTime 进行格式化。此方法需要一个参数,即将格式化的 LocalTime 对象,并返回经过指定的格式设置器格式化的 LocalTime。
用于演示的程序如下
示例
import java.util.*; import java.time.*; import java.time.format.DateTimeFormatter; public class Main { public static void main(String[] args) { LocalTime lt = LocalTime.parse("14:30:47"); System.out.println("The LocalTime is: " + lt); DateTimeFormatter dtf = DateTimeFormatter.ISO_TIME; System.out.println("The formatted LocalTime is: " + dtf.format(lt)); } }
输出
The LocalTime is: 14:30:47 The formatted LocalTime is: 14:30:47
现在我们来了解一下上面的程序。
首先,显示 LocalTime。然后使用 format() 方法结合指定的格式设置器对 LocalTime 进行格式化并显示格式化的 LocalTime。用代码片段示例如下
LocalTime lt = LocalTime.parse("14:30:47"); System.out.println("The LocalTime is: " + lt); DateTimeFormatter dtf = DateTimeFormatter.ISO_TIME; System.out.println("The formatted LocalTime is: " + dtf.format(lt));
广告