Java 计算两个日期时间差(天数、时、分、秒、毫秒)
原文地址:https://www.yundashi168.com/396.html
输入:
System.out.println("时间差:"+getDistanceTime("2016-05-01 12:00:00:000","2016-05-01 12:50:02:157"));
打印:(其它天,时,分都可以打印)
/**
* 统计两个时间的时间差
* 相差几秒几毫秒
*/
public static String getDistanceTime(String str1, String str2) {
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS");
Date one;
Date two;
long
共有 0 条评论