Java8中的LocalDateTime和Date一些时间操作方法

作者:小小华bk 时间:2022-06-28 12:28:57 

先记录下jdk8之前的一些帮助方法

判断time是否在now的n天之内


/**
 * 判断time是否在now的n天之内
 * @param time
 * @param now
 * @param n 正数表示在条件时间n天之后,负数表示在条件时间n天之前
 * @return
 */
public static boolean belongDate(Date time, Date now, int n) {
 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
 Calendar calendar = Calendar.getInstance(); //得到日历
 calendar.setTime(now);//把当前时间赋给日历
 calendar.add(Calendar.DAY_OF_MONTH, n);
 Date before7days = calendar.getTime(); //得到n前的时间
 if (before7days.getTime() < time.getTime()) {
  return true;
 } else {
  return false;
 }
}

判断某个时间是否是在条件的起始时间与结束时间之内


/**
 * 判断time是否在from,to之内
 *
 * @param time 指定日期
 * @param from 开始日期
 * @param to 结束日期
 * @return
 */
public static boolean belongCalendar(Date time, Date from, Date to) {
 Calendar date = Calendar.getInstance();
 date.setTime(time);

Calendar after = Calendar.getInstance();
 after.setTime(from);

Calendar before = Calendar.getInstance();
 before.setTime(to);

if (date.after(after) && date.before(before)) {
  return true;
 } else {
  return false;
 }
}

判断给定时间与当前时间相差多少天


public static long getDistanceDays(String date) {
 DateFormat df = new SimpleDateFormat("yyyy-MM-dd");
 long days = 0;
 try {
  Date time = df.parse(date);//String转Date
  Date now = new Date();//获取当前时间
  long time1 = time.getTime();
  long time2 = now.getTime();
  long diff = time1 - time2;
  days = diff / (1000 * 60 * 60 * 24);
 } catch (Exception e) {
  e.printStackTrace();
 }
 return days;//正数表示在当前时间之后,负数表示在当前时间之前
}

将Date转换成String


private static final String LONG_PATTERN="yyyy-MM-dd HH:mm:ss";
private static final String SHORT_PATTERN="yyyy-MM-dd";

/**
 * 将日期转换为字符串
 */
public static String parse( Date d, String pattern){
 DateFormat df=null;
 if( pattern!=null && !"".equals(pattern) ){
  df=new SimpleDateFormat(pattern);
 }else{
  df=new SimpleDateFormat(LONG_PATTERN);
 }
 return df.format( d );
}

将String转换成Date


private static final String LONG_PATTERN="yyyy-MM-dd HH:mm:ss";
private static final String SHORT_PATTERN="yyyy-MM-dd";

/**
 * 将字符串转为日期
 */
public static Date parseStringToDate(String str, String pattern){
 DateFormat df = null;
 if( pattern!=null && !"".equals(pattern) ){
  df=new SimpleDateFormat( pattern );
 }else{
  df=new SimpleDateFormat( LONG_PATTERN );
 }
 Date d=null;
 try {
  d=df.parse(str);
 } catch (ParseException e) {
  e.printStackTrace();
 }
 return d;

}

获取指定年后的日期(例如三年后的日期)


Calendar date = Calendar.getInstance();
 date.setTime(new Date());
 date.add(Calendar.YEAR, +3);
 //倒计时结束后的时间
 Date scrap_year = date.getTime();
 System.out.println("三年后时间" + scrap_year);

Jdk8改革

LocalDateTime获取毫秒数


//获取秒数
Long second = LocalDateTime.now().toEpochSecond(ZoneOffset.of("+8"));
//获取毫秒数
Long milliSecond = LocalDateTime.now().toInstant(ZoneOffset.of("+8")).toEpochMilli();

LocalDateTime与String互转
//时间转字符串格式化
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMddHHmmssSSS");
String dateTime = LocalDateTime.now(ZoneOffset.of("+8")).format(formatter);

//字符串转时间
String dateTimeStr = "2018-07-28 14:11:15";
DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
LocalDateTime dateTime = LocalDateTime.parse(dateTimeStr, df);


Date与LocalDateTime互转




//将java.util.Date 转换为java8 的java.time.LocalDateTime,默认时区为东8区
public static LocalDateTime dateConvertToLocalDateTime(Date date) {
 return date.toInstant().atOffset(ZoneOffset.of("+8")).toLocalDateTime();
}

//将java8 的 java.time.LocalDateTime 转换为 java.util.Date,默认时区为东8区
public static Date localDateTimeConvertToDate(LocalDateTime localDateTime) {
 return Date.from(localDateTime.toInstant(ZoneOffset.of("+8")));
}

将LocalDateTime转为自定义的时间格式的字符串


public static String getDateTimeAsString(LocalDateTime localDateTime, String format) {
DateTimeFormatter formatter = DateTimeFormatter.ofPattern(format);
return localDateTime.format(formatter);
}

将某时间字符串转为自定义时间格式的LocalDateTime


public static LocalDateTime parseStringToDateTime(String time, String format) {
DateTimeFormatter df = DateTimeFormatter.ofPattern(format);
return LocalDateTime.parse(time, df);
}

将long类型的timestamp转为LocalDateTime


public static LocalDateTime getDateTimeOfTimestamp(long timestamp) {
Instant instant = Instant.ofEpochMilli(timestamp);
ZoneId zone = ZoneId.systemDefault();
return LocalDateTime.ofInstant(instant, zone);
}

将LocalDateTime转为long类型的timestamp


public static long getTimestampOfDateTime(LocalDateTime localDateTime) {
ZoneId zone = ZoneId.systemDefault();
Instant instant = localDateTime.atZone(zone).toInstant();
return instant.toEpochMilli();
}

来源:https://blog.csdn.net/qq_36827957/article/details/90286149

标签:java8,localdateTime,date
0
投稿

猜你喜欢

  • SWT(JFace)体验之模拟BorderLayout布局

    2022-08-17 18:09:51
  • SpringCloud Alibaba 基本开发框架搭建过程

    2023-04-21 03:23:43
  • spring boot使用thymeleaf跳转页面实例代码

    2021-09-14 09:46:16
  • Java(基于Struts2) 分页实现代码

    2023-11-04 05:58:58
  • 解决springboot启动失败的问题('hibernate.dialect' not set)

    2023-11-09 03:21:21
  • Java超详细讲解设计模式之一的单例模式

    2023-03-09 10:59:09
  • 5个主流的Java开源IDE工具详解

    2021-10-13 06:06:50
  • 详解Spring中的@PropertySource注解使用

    2023-05-05 06:40:15
  • Mybatis分页插件PageHelper的配置和简单使用方法(推荐)

    2022-03-20 06:34:55
  • Android采取ContentObserver方式自动获取验证码

    2023-07-31 16:20:48
  • Java开发利器之Guava Cache的使用教程

    2022-03-20 19:22:02
  • 深入理解TextView实现Rich Text--在同一个TextView设置不同字体风格

    2023-05-25 04:52:01
  • Java 容器类源码详解 Set

    2022-03-21 18:08:40
  • Java编程Webservice指定超时时间代码详解

    2023-11-02 23:17:12
  • Spring定时任务无故停止又不报错的解决

    2021-06-06 08:41:27
  • java web中图片验证码功能的简单实现方法

    2023-06-07 13:30:53
  • java 中类似js encodeURIComponent 函数的实现案例

    2023-03-20 13:13:50
  • C# 设置Chart的X轴为时间轴​​​​​​​详情

    2022-03-14 12:48:30
  • Android实现信息弹出框

    2023-04-20 06:27:40
  • Java Date时间类型的操作实现

    2023-11-25 06:44:31
  • asp之家 软件编程 m.aspxhome.com