Java Milliseconds getMillisecond(String forDate)

Here you can find the source of getMillisecond(String forDate)

Description

get Millisecond

License

Open Source License

Declaration

public static int getMillisecond(String forDate) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {

    public static int getMillisecond(String forDate) {
        return Integer.parseInt(forDate.substring(20, 23));
    }//from   w w w.j  a v  a 2  s . c  om
}

Related

  1. getMillis(String dateStr)
  2. getMillis(String decimal)
  3. getMillisDisplayable(long millis)
  4. getMilliSecond(Date d1, Date d2)
  5. getMillisecond(Date date)
  6. getMilliSecondBetween(long start, long end)
  7. getMillisecondDay()
  8. getMilliSeconds(String input)
  9. getMilliseconds(String time)