类 FormatTimeKit

java.lang.Object
com.iohao.game.common.kit.time.FormatTimeKit

public final class FormatTimeKit extends Object
日期与时间 - 格式化工具
从以下版本开始:
21.16
作者:
渔民小镇
日期:
2024-08-27
  • 构造器详细资料

    • FormatTimeKit

      public FormatTimeKit()
  • 方法详细资料

    • ofPattern

      public DateTimeFormatter ofPattern(String pattern)
      get singleton DateTimeFormatter by pattern
      参数:
      pattern - the pattern to use, not null
      返回:
      the formatter based on the pattern, not null
    • format

      public String format()
      将当前时间格式化为 yyyy-MM-dd HH:mm:ss
      返回:
      yyyy-MM-dd HH:mm:ss
    • format

      public String format(long timeMillis)
      将指定的 Millis 格式化为 yyyy-MM-dd HH:mm:ss
      参数:
      timeMillis - Millis
      返回:
      yyyy-MM-dd HH:mm:ss
    • format

      public String format(TemporalAccessor temporal)
      将 TemporalAccessor 格式化为 yyyy-MM-dd HH:mm:ss
      参数:
      temporal - TemporalAccessor
      返回:
      yyyy-MM-dd HH:mm:ss
    • format

      public String format(TemporalAccessor temporal, String pattern)
      将 TemporalAccessor 格式化为指定的格式
      参数:
      temporal - TemporalAccessor
      pattern - 指定的格式
      返回:
      指定的格式