Java Milliseconds millisecondsSinceMidnight(Date date)

Here you can find the source of millisecondsSinceMidnight(Date date)

Description

milliseconds Since Midnight

License

Mozilla Public License

Declaration

public static int millisecondsSinceMidnight(Date date) 

Method Source Code

//package com.java2s;
/*/*from w  w w  . j av  a  2  s  .c  o  m*/
The contents of this file are subject to the Mozilla Public License
Version 1.1 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL/
    
Software distributed under the License is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
License for the specific language governing rights and limitations
under the License.
    
The Original Code is OpenFAST.
    
The Initial Developer of the Original Code is The LaSalle Technology
Group, LLC.  Portions created by The LaSalle Technology Group, LLC
are Copyright (C) The LaSalle Technology Group, LLC. All Rights Reserved.
    
Contributor(s): Jacob Northey <jacob@lasalletech.com>
        Craig Otis <cotis@lasalletech.com>
 */

import java.util.Calendar;

import java.util.Date;

import java.util.TimeZone;

public class Main {
    public static int millisecondsSinceMidnight(Date date) {
        Calendar cal = Calendar.getInstance();
        cal.setTimeZone(TimeZone.getTimeZone("GMT"));
        cal.setTime(date);
        return cal.get(Calendar.HOUR_OF_DAY) * 3600000 + cal.get(Calendar.MINUTE) * 60000
                + cal.get(Calendar.SECOND) * 1000 + cal.get(Calendar.MILLISECOND);
    }
}

Related

  1. millisBetween(Date firstDate, Date lastDate)
  2. millisecond(final Date date)
  3. millisecondOf(Date date)
  4. milliseconds(int offset)
  5. millisecondsBetween(Date start, Date finish)
  6. millisToDate(String stime)
  7. minutusAndSecondsFromMillis(long millis)
  8. msToString(long milliseconds)
  9. multiplyRelativeTimeMillis(long duration, long multiplier)