文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

java中日期转换Date、DateTime、TimeStamp、String之间相互转换

2023-09-07 22:24

关注

1.Date转String

1.1Date->String

        //date->String        Date date = new Date();        String format = dateFormat.format(date);        System.out.println("format = " + format);

1.2String->Date

        //yyyy-MM-dd HH:mm:ss        //SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");        String time = "2023-04-03";        SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");        //1.string->date        Date parse = dateFormat.parse(time);        System.out.println("parse = " + parse);

2.Date转TimeStamp

2.1Date->TimeStamp

        //Date->TimeStamp        Date date = new Date();        long time = date.getTime();        Timestamp createTime = new Timestamp(time);        System.out.println("createTime = " + createTime);

2.2TimeStamp->Date

        //TimeStamp->Date        Timestamp timestamp = new Timestamp(System.currentTimeMillis());        Date timestampToDate = new Date(timestamp.getTime());        System.out.println("timestampToDate = " + timestampToDate);

3.Date转DateTime

DateTime使用依赖

                    joda-time            joda-time            2.9.1        

3.1Date->DateTime

方法1:

        //method1        Date date = new Date();        DateTime dateTime1 = new DateTime(date);

方法2:

         //method2        Date date = new Date();        String dateTimeString = new DateTime(date).toString("yyyy-MM-dd");        DateTimeFormatter dateTimeFormatter = DateTimeFormat.forPattern("yyyy-MM-dd");        DateTime time = dateTimeFormatter.parseDateTime(dateTimeString);        System.out.println("Date->DateTime: " + time);

3.2DateTime->Date

        //DateTime->Date        DateTime dateTime = new DateTime();        Date dateToDateTime = dateTime.toDate();        System.out.println("DateTime->Date" + dateToDateTime);

4.String转DateTime

        //String->DateTime        String dateTimeString = "2023-04-08";        DateTimeFormatter dateTimeFormatter = DateTimeFormat.forPattern("yyyy-MM-dd");        DateTime time = dateTimeFormatter.parseDateTime(dateTimeString);        System.out.println("String->DateTime: " + time);        //DateTime->String        DateTime dt=new DateTime();        String format="YYYY-MM-dd HH-mm-ss";        String str= dt.toString(format);        System.out.println("DateTime->String = " + str);

5.String与TimeStamp互转

         String timeStr = "2023-04-06 10:30:40";        //String -> Timestamp        Timestamp time = Timestamp.valueOf(timeStr);        //Timestamp -> String        String strn = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(time);        System.out.println("Timestamp time = " + time);        System.out.println("strn = " + strn);

来源地址:https://blog.csdn.net/m0_64887997/article/details/130031520

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯