Java Milliseconds humanDateToMillisecondsWithoutException(String date)

Here you can find the source of humanDateToMillisecondsWithoutException(String date)

Description

human Date To Milliseconds Without Exception

License

Apache License

Declaration

public static long humanDateToMillisecondsWithoutException(String date) 

Method Source Code


//package com.java2s;
/*/*w ww .  jav a 2  s. c  om*/
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (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.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.text.ParseException;
import java.text.SimpleDateFormat;

import java.util.Date;
import java.util.TimeZone;

public class Main {
    private static TimeZone CURRENT_TIME_ZONE = TimeZone.getDefault();

    public static long humanDateToMillisecondsWithoutException(String date) {
        try {
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss,SSS");
            sdf.setTimeZone(CURRENT_TIME_ZONE);
            Date d = sdf.parse(date);
            return d.getTime();
        } catch (ParseException ex) {
            return 0L;
        }
    }
}

Related

  1. getTimeStringFromMilliseconds(long millis)
  2. getTimeZoneOffSetInMillisecond(String dateString)
  3. getUnitLengthMillis(String unit)
  4. hasExpiredMillis(long now, long eventTime, long timeBuffer)
  5. hhmmssToMillis(String text)
  6. isSameSecondOfMillis(final long ms1, final long ms2)
  7. longToDate(long millis)
  8. marsTimeFromElapsedMillis(long elapsedMillis, int[] marsTime)
  9. megaCyclesToMilliseconds(long megaCycles)