Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.9k views
in Technique[技术] by (71.8m points)

Formatting LocalTime Minutes/Seconds into Integer Java

I know there are similiar questions but they don't answer my problem. I want to format the current time into Integer, but only the Minutes or Seconds.

So for example

LocalTime d = LocalTime.now(ZoneId.of("GMT"));

gives me the current GMT and with "withNano(0)" I can aswell cut off the nanoseconds. Since I have it in the format 12:15:45 now I want to be able to save 15 (Minutes) into my Integer or 45 (Seconds). How can I convert it?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can call specific methods on the LocalTime such as getMinute() and getSecond(), or you can use a DateTimeFormatter with a pattern that you’re looking for, like:

d.format(DateTimeFormatter.of(“mm:ss”);

If you’re doing that, you don’t need to zero out the nano first.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...