Android Today Get getToday00Time()

Here you can find the source of getToday00Time()

Description

get Today Time

Declaration

public static String getToday00Time() 

Method Source Code

//package com.java2s;
import java.text.SimpleDateFormat;

import java.util.Date;

public class Main {
    public static String getToday00Time() {
        Date curDate = new Date(System.currentTimeMillis());
        SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd000000");
        String result = sdf.format(curDate);
        return result;
    }/* w w  w.j  a va  2  s. co m*/
}

Related

  1. isToday(long time)
  2. today()
  3. today()
  4. isToday(long lTime)
  5. getToday()
  6. getCurDateTimeinString()
  7. today()
  8. isToday(String sdate)
  9. getTodaysDate()