概述
方法一
/**
这个mills 就是需要的时间的毫秒值
getInstance()默认获取到的是当前系统时间
clear将这个日历字段和时间值设置成未定义
set方法可以传3个值年月日 可以传5个值年月日时分 6个值 年月日时分秒
Calendar 月份比SimpleDateFormat 少一个月 所以c的0月是实际的1月
*/
Calendar c1 =Calendar.getInstance(); //java.util.Calendar
c1.clear();
c1.set(2018,0,1,10,23,56);
long mills = c1.getTimeInMills();
方法二
这里的date就是获取到的毫秒时间
SimpleDateFormat sdf =new SimpleDateFormat("yyyy-mm-dd");
Date date =null;
date =sdf.parse("2018-01-01");
SimpleDateFormat与Calendar的转化
Calendar c2=Calendar.getInstance();
System.out.println("查看当前时间Calendar中的年月"+c2.get(Calendar.YEAR)+","+c.get(Calendar.MONTH));
//可以看出来月份比当前少一个月
Date date = c2.getTime();
SimpleDateFormat dateformat = new SimpleDateFormat("yyyyMMdd");
String strNow = dateformat.format(date);
最后
以上就是怕黑镜子为你收集整理的java中指定的时间转化成毫秒时间的方法总结的全部内容,希望文章能够帮你解决java中指定的时间转化成毫秒时间的方法总结所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复