Java Milliseconds getMilliseconds(String unixtime)

Here you can find the source of getMilliseconds(String unixtime)

Description

get Milliseconds

License

Apache License

Declaration

public static long getMilliseconds(String unixtime) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static long getMilliseconds(String unixtime) {
        return Long.valueOf(unixtime) * 1000;
    }/*w w  w .jav a 2s. co  m*/
}

Related

  1. getMillisecond(String forDate)
  2. getMilliSecondBetween(long start, long end)
  3. getMillisecondDay()
  4. getMilliSeconds(String input)
  5. getMilliseconds(String time)
  6. getMillisecondsFromTimeString(String timeString)
  7. getMilliSecs()
  8. getMillisFromByteArray(byte[] buff, int offset)
  9. getMillisPartFromNanos(long nanos)