java时间戳转calender_java时间操作 - 朝如青丝暮成雪 - OSCHINA - 中文开源技术交流社区...

1、获取时间前几天或者后几天

Calendar now=Calendar.getInstance();

now.add(Calendar.DATE,10);

2、Calendar时间戳转换

Calendar now=Calendar.getInstance();

System.out.println(now.getTimeInMillis());

Calendar now=Calendar.getInstance();

now.setTimeInMillis(1559188481978L);

3、Calendar格式化时间

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

Calendar now = Calendar.getInstance();

System.out.println(df.format(now.getTime()));

4、String 转化Calendar

String str="2019-1-1";

SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd");

Date date =sdf.parse(str);

Calendar calendar = Calendar.getInstance();

calendar.setTime(date);

5、String 转化Date

String str="2019-1-1";

SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd");

Date date =sdf.parse(str);

6、Timestamp转String

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

Timestamp ts = new Timestamp(System.currentTimeMillis());

String xxx=sdf.format(ts);

7、String转Timestamp

Timestamp ts = Timestamp.valueOf("2019-01-01 12:00:00");

8、Timestamp转LocalDateTime

Timestamp ts=Timestamp.from(Instant.now());

LocalDateTime ldt=ts.toLocalDateTime();

9、LocalDateTime转Timestamp

LocalDateTime ldt = LocalDateTime.now();

Timestamp ts = Timestamp.valueOf(ldt);

10、LocalDateTime转String

DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");

LocalDateTime time = LocalDateTime.now();

String localTime = df.format(time);

11、String转LocalDateTime

DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss");

LocalDateTime ldt = LocalDateTime.parse("2019-08-23 12:00:00", df);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值