博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java之SimpleDateFormat日期格式转换(Date 和 String 类型之间的转换)
阅读量:5359 次
发布时间:2019-06-15

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

SimpleDateFormat : 可以选择任何用户定义的日期-时间格式的模式    "yyyy-MM-dd HH:mm:ss:SSS"

1.格式化:Date -->String   
         String  format(Date date) 将Date格式化为日期/时间字符串
2.解析:String -->Date 
         Date parse(String source) 将符合格式的指定字符串转换为Date

public class SimpleDateFormatDemo {     public static void main(String[] args) throws ParseException {        // TODO Auto-generated method stub        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS");//Date指定格式:yyyy-MM-dd HH:mm:ss:SSS        Date date = new Date();//创建一个date对象保存当前时间        String dateStr = simpleDateFormat.format(date);//format()方法将Date转换成指定格式的String        System.out.println(dateStr);//2018-08-24 15:37:47:033                String string = "2018-8-24 12:50:20:545";        Date date2 = simpleDateFormat.parse(string);//调用parse()方法时 注意 传入的格式必须符合simpleDateFormat对象的格式,即"yyyy-MM-dd HH:mm:ss:SSS" 否则会报错!!        System.out.println(date2);//Fri Aug 24 12:50:20 CST 2018    } }

运行结果图:

转载至https://blog.csdn.net/qq_38225558/article/details/82019860

转载于:https://www.cnblogs.com/lq13035130506/p/10658872.html

你可能感兴趣的文章
a标签添加点击事件
查看>>
Context.startActivity出现AndroidRuntimeException
查看>>
Intellij idea创建javaWeb以及Servlet简单实现
查看>>
代理网站
查看>>
Open multiple excel files in WebBrowser, only the last one gets activated
查看>>
FFmpeg进行视频帧提取&音频重采样-Process.waitFor()引发的阻塞超时
查看>>
最近邻与K近邻算法思想
查看>>
【VS开发】ATL辅助COM组件开发
查看>>
FlatBuffers In Android
查看>>
《演说之禅》I & II 读书笔记
查看>>
thinkphp3.2接入支付宝支付接口(PC端)
查看>>
response和request
查看>>
【转】在Eclipse中安装和使用TFS插件
查看>>
回到顶部浮窗设计
查看>>
C#中Monitor和Lock以及区别
查看>>
【NOIP2017】奶酪
查看>>
$ 一步一步学Matlab(3)——Matlab中的数据类型
查看>>
5.6.3.7 localeCompare() 方法
查看>>
Linux下好用的简单实用命令
查看>>
描绘应用程序级的信息
查看>>