日期
时间
时区
地区
Locale表示一个国家或地区的日期、时间、数字、货币等格式
时间
价格
Calendar这个类用来设置或者获取年、月、日、时、分、秒
public class CalendarTest {
public static void main(String[] args) {
//获取当前时间的一个Calendar对象
Calendar calendar = Calendar.getInstance();
//获取年
int y = calendar.get(Calendar.YEAR);
//获取月
int m = calendar.get(Calendar.MONTH);
//获取日
int d = calendar.get(Calendar.DAY_OF_MONTH);
//获取当前星期
int w = calendar.get(Calendar.DAY_OF_WEEK);
//获取小时
int hh = calendar.get(Calendar.HOUR_OF_DAY);
//获取分钟
int mm = calendar.get(Calendar.MINUTE);
//获取秒
int ss = calendar.get(Calendar.SECOND);
//获取毫秒
int ms = calendar.get(Calendar.MILLISECOND);
}
}
我们还可以设置指定时间
public class CalendarTest {
public static void main(String[] args) {
//获取当前时间的一个Calendar对象
Calendar calendar = Calendar.getInstance();
//可以通过 setTime(Date)设置时间
calendar.setTime(new Date());
//也可以通过 setTimeInMillis(long) System.currentTimeMillis() 获取当前系统时间 返回值为long类型
calendar.setTimeInMillis(System.currentTimeMillis());
//我们还可以清楚掉时间自己设置
calendar.clear();
//设置年
calendar.set(Calendar.YEAR,1999);
//设置月
calendar.set(Calendar.MONTH,10);
//设置日期
calendar.set(Calendar.DAY_OF_MONTH,24);
//设置小时
calendar.set(Calendar.HOUR_OF_DAY,11);
System.out.println(calendar.getTime());
}
}
时区转换
calendar.setTimeZone(TimeZone.getTimeZone("America/New_York"));
加减时间
//获取当前时间的一个Calendar对象
Calendar calendar = Calendar.getInstance();
//加五天
calendar.add(Calendar.DAY_OF_MONTH,5);
//减2天
calendar.add(Calendar.DAY_OF_MONTH,-2);
LocalDate(本地的日期)
LocalTime(本地的时间)
LocalTime(本地的日期和时间)
特点有
//当前日期
LocalDate localDate = LocalDate.now();
//当前时间
LocalTime localTime = LocalTime.now();
//当前日期和时间
LocalDateTime localDateTime = LocalDateTime.now();
//指定日期和时间
LocalDate date = LocalDate.of(2020, 11, 21);
LocalTime time = LocalTime.of(21, 54, 12);
LocalDateTime dateTime1 = LocalDateTime.of(2020, 11, 21, 21, 54, 12);
LocalDateTime dateTime2 = LocalDateTime.of(date, time);
格式化日期Formatter
DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");
System.out.println(dateTimeFormatter.format(LocalDateTime.now()));
//打印结果
2020-11-21 22:00:19
默认按照ISO标准化进行格式化和解析
日期和时间的运算
LocalDate today = LocalDate.now();
//+5天
LocalDate localDate = today.plusDays(5);
//-2小时
LocalDateTime localDateTime = LocalDateTime.now();
LocalDateTime localDateTime1 = localDateTime.minusHours(2);
//+1月 -2周
LocalDate date = today.plusMonths(1).minusWeeks(2);
//本月的第一天
LocalDate.now().withDayOfMonth(1);
//本月的最后一天
LocalDate.now().with(TemporalAdjusters.lastDayOfMonth());
//本月的第一个周日
LocalDate.now().with(TemporalAdjusters.firstInMonth(DayOfWeek.SUNDAY));
更多的运算方法你们可以ctrl + 鼠标左键查看LocalDateTime的源码
判断日期和时间的先后
LocalDate localDate1 = LocalDate.of(2020, 11, 21);
LocalDate localDate2 = LocalDate.of(2020, 11, 20);
//检查此日期是否早于指定日期
System.out.println(localDate1.isBefore(localDate2));
//检查此日期是否在指定的日期之后
System.out.println(localDate1.isAfter(localDate2));
//判断日期是否相等
System.out.println(localDate1.equals(localDate2));
计算两个日期之差
LocalDate localDate1 = LocalDate.of(2020, 11, 21);
LocalDate localDate2 = LocalDate.of(2079, 4, 20);
//获取两个日期之间的差作为Period 对象返回
Period period = localDate1.until(localDate2);
//打印结果为P58Y4M30D 表示相差 58年4个月30天
System.out.println(period);
//获取年 58
System.out.println(period.getYears());
//获取月 4
System.out.println(period.getMonths());
//获取天 30
System.out.println(period.getDays());
LocalDateTime无法与弄进行转换
//当前时区的日期和时间
ZonedDateTime localDateTime = ZonedDateTime.now();
//纽约时区的日期和时间
ZonedDateTime zonedDateTime = ZonedDateTime.now(ZoneId.of("America/New_York"));
可以从LocalDateTime转换
LocalDateTime localDateTime = LocalDateTime.of(2020, 11, 21, 8, 3, 3);
//关联到当前默认时区
ZonedDateTime zonedDateTime = localDateTime.atZone(ZoneId.systemDefault());
//关联到纽约时区
ZonedDateTime zonedDateTime1 = localDateTime.atZone(ZoneId.of("America/New_York"));
Instant对象表示时刻
Instant instant = ZonedDateTime.now().toInstant();
long epochSecond = instant.getEpochSecond();//返回long 可以与long进行转换
数据库 | 对应Java类(旧) | 对应Java类(新) |
---|---|---|
DATETIME | java.util.Date | LocalDateTime |
DATE | java.sql,Date | LocalDate |
TIME | java.sql.Time | LocalTime |
TIMESTAMP | java.sql.Timestamp | LocalDateTime |
原文:https://www.cnblogs.com/lvjingying/p/14018002.html