如何获得达到某个日期的日,小时,分钟

时间:2015-08-12 09:53:29

标签: android android-layout android-intent datepicker android-date

我需要 小时 分钟才能到达特定日期 例如:

  

日期=“2015年8月14日16:38:28”

Current_Date = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss").format(new Date());

并达到Date的结果 2天1小时30分钟

2 个答案:

答案 0 :(得分:6)

我在google上进行简单搜索

    String dateStart = "01/14/2012 09:29:58";
    String dateStop = "01/15/2012 10:31:48";

    //HH converts hour in 24 hours format (0-23), day calculation
    SimpleDateFormat format = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss");

    Date d1 = null;
    Date d2 = null;

    try {
        d1 = format.parse(dateStart);
        d2 = format.parse(dateStop);

        //in milliseconds
        long diff = d2.getTime() - d1.getTime();

        long diffSeconds = diff / 1000 % 60;
        long diffMinutes = diff / (60 * 1000) % 60;
        long diffHours = diff / (60 * 60 * 1000) % 24;
        long diffDays = diff / (24 * 60 * 60 * 1000);

        System.out.print(diffDays + " days, ");
        System.out.print(diffHours + " hours, ");
        System.out.print(diffMinutes + " minutes, ");
        System.out.print(diffSeconds + " seconds.");

    } catch (Exception e) {
        e.printStackTrace();
    }

见下面的链接

  1. http://www.mkyong.com/java/how-to-calculate-date-time-difference-in-java/
  2. How to find the duration of difference between two dates in java?
  3. Calculate date/time difference in java

答案 1 :(得分:2)

您可以使用:

Calendar c = Calendar.getInstance(); 
int seconds = c.get(Calendar.SECOND);

日历中有很多常量可供您使用。修改:Calendar class documentation