All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hydraql.common.util.DateAndTimeUtil Maven / Gradle / Ivy

The newest version!
/*
 * 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.
 */

package com.hydraql.common.util;

import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;

/**
 * @author leojie 2021/6/13 8:52 下午
 */
public final class DateAndTimeUtil {
  public static final String MS_FORMAT = "yyyy-MM-dd_HH:mm:ss:SSS";
  public static final String SECOND_FORMAT = "yyyy-MM-dd HH:mm:ss";
  public static final String MINUTE_FORMAT = "yyyy-MM-dd_HH:mm";
  public static final String HOUR_FORMAT = "yyyy-MM-dd_HH";
  public static final String DAY_FORMAT = "yyyy-MM-dd";

  public static String parseDatetimeToStr(LocalDateTime localDateTime) {
    DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern(SECOND_FORMAT);
    return dateTimeFormatter.format(localDateTime);
  }

  public static String parseTimestampToTimeStr(long timestamp) {
    Instant instant = Instant.ofEpochMilli(timestamp);
    ZoneId zone = ZoneId.systemDefault();
    LocalDateTime dateTime = LocalDateTime.ofInstant(instant, zone);

    return parseDatetimeToStr(dateTime);
  }

  public static void main(String[] args) {
    System.out.println(parseTimestampToTimeStr(1623586470408L));
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy