I am transitioning a project from Joda-Time to java8's native time libraries, and I have run into a snag.
I have been unable to find a formatter for Duration. I would like to have a custom String format of, for instance, HHH+MM, where a Duration of 75 hours and 15 minutes would format as "75+15".
This was easy to do with Joda-Time by converting to period, and using a PeriodFormatter, but I have been unable to find this type of class in Java8. Am I missing something?
We can create a Duration object by using one of the Duration class factory methods: static Duration of(long amount, TemporalUnit unit): Obtains a Duration representing an amount in the specified unit. static Duration ofDays(long days): Obtains a Duration representing a number of standard 24 hour days.
Duration::to…Part
methodsIn Java 9 the Duration
class gained new to…Part
methods for returning the various parts of days, hours, minutes, seconds, milliseconds/nanoseconds. See this pre-release OpenJDK source code.
Given a duration of 49H30M20.123S…
toNanosPart()
= 123000000toMillisPart()
= 123toSecondsPart()
= 20toMinutesPart()
= 30toHoursPart()
= 1toDaysPart()
= 2 Remember that “days” here means chunks of 24-hours, ignoring dates on a calendar. If you care about dates, use Period
class instead.
I do not know if any additional formatter features are added. But at least you will be able to more conveniently generate your own strings from numbers obtained via these new getter methods.
Oddly enough, no convenient getter methods for these values were included in the first edition release of java.time in Java 8. One of very few oversights in the otherwise excellent design of the java.time framework.
See the related Question: Why can't I get a duration in minutes or hours in java.time?.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With