Android Calendar Get GetCurrentTime_UTCMilliSeconds()

Here you can find the source of GetCurrentTime_UTCMilliSeconds()

Description

Get Current TimUTC Milli Seconds

Declaration

public static long GetCurrentTime_UTCMilliSeconds() 

Method Source Code

//package com.java2s;

import java.util.Calendar;

public class Main {
    public static long GetCurrentTime_UTCMilliSeconds() {
        // return System.currentTimeMillis();
        Calendar c = Calendar.getInstance();
        // int ms = c.get(Calendar.MILLISECOND);
        return c.getTimeInMillis();
    }// w  w w  . ja v  a  2s .c  o  m
}

Related

  1. GetCurrentTime_String()
  2. GetCurrentTime_UTCSeconds()
  3. getCurrentMonth()
  4. getCurrentTimeStr()
  5. getCurrentWeek()