博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Calendar、Date、long类型的时间,三者之间如何转化
阅读量:6250 次
发布时间:2019-06-22

本文共 547 字,大约阅读时间需要 1 分钟。

1. Calendar类型转化为Date类型和long类型

Calendar calendar=Calendar.getInstance();

Date date=calendar.getTime();
long time=calendar.getTimeInMillis();

2.Date类型转化为Calendar类型和long类型

Date date=new Date(System.currentTimeMillis()+100000000);

Calendar calendar=Calendar.getInstance();
calendar.setTime(date);
long time=date.getTime();

3. long类型转化为Date类型和Calendar类型

long time=System.currentTimeMillis()+100000000;

Date date=new Date(time);
Calendar calendar=Calendar.getInstance();
calendar.setTimeInMillis(time);

转载于:https://www.cnblogs.com/bdqnhhm/p/6683155.html

你可能感兴趣的文章
水仙花数
查看>>
P3308 [SDOI2014]LIS(最小割+退流)
查看>>
C语言作业--数据类型
查看>>
压位高精
查看>>
jsp 中对jar 包的引用
查看>>
python操作mysql数据库
查看>>
Yii: gii 403 Error you are not allowed to access this page
查看>>
计算汉字长度
查看>>
Codeforces 911E - Stack Sorting
查看>>
BZOJ 1853: [Scoi2010]幸运数字
查看>>
基于敏捷的测试交付物通用设计
查看>>
BFS --- 素数环
查看>>
for循环每次取出一个字符(不是字节)
查看>>
linux版本选择
查看>>
不写for也能选中checkbox!
查看>>
PCIE_DMA:xapp1052学习笔记
查看>>
css
查看>>
Java规则引擎及JSR-94[转]
查看>>
【c学习-13】
查看>>
给报表增加页眉
查看>>