首页 > 代码库 > java SimpleDateFormat日期与时间戳的相互转换
java SimpleDateFormat日期与时间戳的相互转换
自我总结,有什么不满意的地方,各位可以帮忙纠正补充一下,感激不尽!
目的:SimpleDateFormat类可以很随意的组合日期时间的格式,不止单纯的yyyy-MM-dd这种格式
废话不多说,上代码
测试类 DateTest
package com.core.test;import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date;public class DateTest { public static void main(String[] args) throws ParseException { SimpleDateFormat sdf0 = new SimpleDateFormat("yyyyMMdd"); SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd"); SimpleDateFormat sdf2 = new SimpleDateFormat("yyyy年MM月dd日"); SimpleDateFormat sdf3 = new SimpleDateFormat("ddMMyyyy"); String time0 = "20140916"; String time1 = "2014-09-16"; String time2 = "2014年09月16日"; String time3 = "16092014"; convertStamp(sdf0, time0); convertStamp(sdf1, time1); convertStamp(sdf2, time2); convertStamp(sdf3, time3); long stamp = 1410796800000L; convertDate(sdf0, stamp); convertDate(sdf1, stamp); convertDate(sdf2, stamp); convertDate(sdf3, stamp); } // 日期转换成时间戳 public static void convertStamp(SimpleDateFormat format, String time)throws ParseException { Date date = format.parse(time); System.out.println(date.getTime()); } // 时间戳转换成日期 public static void convertDate(SimpleDateFormat sdf, long stamp) { String date = sdf.format(new Date(stamp)); System.out.println(date); }}
运行结果:
1410796800000141079680000014107968000001410796800000201409162014-09-162014年09月16日16092014
SimpleDateFormat很灵活吧,哈哈
java SimpleDateFormat日期与时间戳的相互转换
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。