码迷,mamicode.com
首页 > 其他好文 > 详细

Date将字符串转换成日期,日期转换成字符串

时间:2020-11-16 13:08:20      阅读:4      评论:0      收藏:0      [点我收藏+]

标签:int   string   led   try   print   字符串   星期几   时分秒   ace   

public static void main(String[] args) { Date date = new Date();//创建日期对象 //2020/11/4 16:01:22 //使用DateFormat的子类SimpleDateFormat /* * G --》代表年代 * y --》年 * M -->月 * m --》分钟 * d --》一月中的第几天 * D --》一年中的第几天 * h --》12小时值 * H --》24小时值 * s --》秒 * S --》毫秒 * E --》星期 * F --》一月中的第几个星期几 * W --》一月中的第几个星期几 * w --》一年中第几星期 * z --》时区 * */ DateFormat df = new SimpleDateFormat("yyyy年MM月dd日-HH时mm分ss秒");//多态 //把日期数据类型转换成字符串数据类型 格式化format(Date date) String format = df.format(date); System.out.println("format = " + format);//format = 2020年11月04日-16时19分24秒 //把字符串转换成日期格式 String time = " 2020年11月04日";//转换成Date类型 cst //parse(String str); //指定日期格式,参照字符串的格式 SimpleDateFormat time2 = new SimpleDateFormat("yyyy年MM月dd日"); try { Date parse = time2.parse(time); System.out.println(parse); //Wed Nov 04 00:00:00 CST 2020 //00:00:00是因为在字符串定义没有给时分秒设定值 } catch (ParseException e) { e.printStackTrace(); } }

Date将字符串转换成日期,日期转换成字符串

标签:int   string   led   try   print   字符串   星期几   时分秒   ace   

原文地址:https://blog.51cto.com/14954368/2547609

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!