解析时间字符串为毫秒
Java 8中现已包含持续时间解析为纳秒再转换成毫秒
PeriodFormatter formatter = new PeriodFormatterBuilder()
.appendDays().appendSuffix("d ")
.appendHours().appendSuffix("h ")
.appendMinutes().appendSuffix("min")
.toFormatter();
Period p = formatter.parsePeriod("2d 5h 30min");
Duration d = Duration.parse(p.toString());
long milliseconds = d.toMillis();
System.out.println(d);
System.out.println(milliseconds);
原文地址:https://blog.csdn.net/qq_38030465/article/details/142640000
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!