可以使用getSecond()
Java中LocalDateTime类中的方法来获取特定LocalDateTime的分钟。此方法不需要任何参数,它返回分钟的秒数,范围为0到59。
演示此的程序如下所示-
import java.time.*; public class Demo { public static void main(String[] args) { LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt); System.out.println("The second is: " + ldt.getSecond()); } }
输出结果
The LocalDateTime is: 2019-02-18T23:15:30 The second is: 30
现在让我们了解上面的程序。
首先显示LocalDateTime。然后使用该getSecond()
方法显示LocalDateTime的第二分钟。演示这的代码片段如下-
LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30"); System.out.println("The LocalDateTime is: " + ldt); System.out.println("The second is: " + ldt.getSecond());