博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Joda-Time
阅读量:6041 次
发布时间:2019-06-20

本文共 1492 字,大约阅读时间需要 4 分钟。

 

根据Millis计算minutes:

demo:

import org.joda.time.Interval;import org.joda.time.LocalDateTime;/** * Created by tang.cheng on 2017/5/19. */public class Test {    public static void main(String[] args) {        long startTime = LocalDateTime.now().toDate().getTime();        int millis = 1234567890;        System.out.println("plus millis:" + millis);        long endTime = LocalDateTime.now().plusMillis(millis).toDate().getTime();        System.out.println("startTime:" + startTime + " \nendTime:" + endTime);        long totalTime = endTime - startTime;        System.out.println("TotalMillis: " + totalTime);        long l = totalTime / 60 / 1000;        System.out.println("Total minutes:" + l + (millis == totalTime ? "没有精度损失" : "有精度损失"));        Interval interval = new Interval(startTime, endTime);        long standardMinutes = interval.toDuration().getStandardMinutes();        System.out.println("Total minutes:" + standardMinutes);    }}

http://1985wanggang.blog.163.com/blog/static/7763833201371341545546/

http://www.yihaomen.com/article/java/405.htm

 

withMillis

public  withMillis(long newMillis)
Returns a copy of this datetime with different millis.

The returned object will be either be a new instance or this. Only the millis will change, the chronology and time zone are kept.

Parameters:
newMillis - the new millis, from 1970-01-01T00:00:00Z
Returns:
a copy of this datetime with different millis

http://www.joda.org/joda-time/

 

转载于:https://www.cnblogs.com/softidea/p/5905573.html

你可能感兴趣的文章
「珍藏」老司机为你推荐10个炫酷的开源库,看完的人都收藏了
查看>>
Xcode编辑器的技巧与诀窍
查看>>
String、StringBuffer与StringBuilder之间区别
查看>>
工作第十三周:身体掏空,精神饱满
查看>>
Linux 内核--任务0的运行(切换到用户模式)move_to_user_mode
查看>>
ios扩展机制objc_setAssociatedObject,objc_getAssociatedObject
查看>>
批量添加-fno-objc-arc
查看>>
二叉树的层序遍历
查看>>
os模块
查看>>
安装 matplotlib
查看>>
css伪类(:before和:after)
查看>>
react native TypeError network request failed
查看>>
【转】CentOS 7. × 系统及内核升级指南
查看>>
PLSQL锁表之后改如何操作
查看>>
LeetCode(92):Reverse Linked List II
查看>>
struts2拦截器的故事
查看>>
【123】网络配置解析
查看>>
malloc/free与new/delete的区别
查看>>
mysql-router的安装与使用
查看>>
Sql注入、文件上传与手机品牌信息抓取解决方案
查看>>