博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SimpleDateFormat关于时间类的一些常用处理
阅读量:5076 次
发布时间:2019-06-12

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

项目中经常会出现对时间类的一些处理,记录一下:

实例一: /**     * 获取当前时间是星期几?     *      * @param args     */    public static void main(String[] args) {        SimpleDateFormat format = new SimpleDateFormat("E");          Date date = new Date();        String s = format.format(date);        System.out.println("s:"+s);    }

 

s:星期四

 

 

实例二: @Test    public void Test(){        Date date = new Date();          SimpleDateFormat weekFormat = new SimpleDateFormat("E");          System.out.println(weekFormat.format(date));                    SimpleDateFormat monthFormat = new SimpleDateFormat("MMMM");          System.out.println(monthFormat.format(date));                    SimpleDateFormat yearFormat = new SimpleDateFormat("yyyy");          System.out.println(yearFormat.format(date));                    SimpleDateFormat dayFormat = new SimpleDateFormat("dd");          System.out.println(dayFormat.format(date));                  /**         *             星期三            五月            2017            24         *          */    }

 

 

实例三:@Test    public void Test1(){         SimpleDateFormat myFmt=new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒");            SimpleDateFormat myFmt1=new SimpleDateFormat("yy/MM/dd HH:mm");             SimpleDateFormat myFmt2=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//等价于now.toLocaleString()            SimpleDateFormat myFmt3=new SimpleDateFormat("yyyy年MM月dd日 HH时mm分ss秒 E ");            SimpleDateFormat myFmt4=new SimpleDateFormat(                    "一年中的第 D 天 一年中第w个星期 一月中第W个星期 在一天中k时 z时区");            Date now=new Date();            System.out.println(myFmt.format(now));            System.out.println(myFmt1.format(now));            System.out.println(myFmt2.format(now));            System.out.println(myFmt3.format(now));            System.out.println(myFmt4.format(now));            System.out.println(now.toGMTString());            System.out.println(now.toLocaleString());            System.out.println(now.toString());    }
2017年05月25日 21时23分11秒17/05/25 21:232017-05-25 21:23:112017年05月25日 21时23分11秒 星期四 一年中的第 145 天 一年中第21个星期 一月中第4个星期 在一天中21时 CST时区25 May 2017 13:23:11 GMT2017-5-25 21:23:11Thu May 25 21:23:11 CST 2017

 

以上!!!

 

转载于:https://www.cnblogs.com/mr-wuxiansheng/p/6906034.html

你可能感兴趣的文章
iOS开发——缩放图片
查看>>
HTTP之URL的快捷方式
查看>>
满世界都是图论
查看>>
配置链路聚合中极小错误——失之毫厘谬以千里
查看>>
蓝桥杯-分小组-java
查看>>
Android Toast
查看>>
iOS开发UI篇—Quartz2D使用(绘制基本图形)
查看>>
docker固定IP地址重启不变
查看>>
桌面图标修复||桌面图标不正常
查看>>
JavaScript基础(四)关于对象及JSON
查看>>
JAVA面试常见问题之Redis篇
查看>>
jdk1.8 api 下载
查看>>
getElement的几中属性介绍
查看>>
HTML列表,表格与媒体元素
查看>>
雨林木风 GHOST_XP SP3 快速装机版YN12.08
查看>>
数据结构3——浅谈zkw线段树
查看>>
Introduction to my galaxy engine 2: Depth of field
查看>>
设计器 和后台代码的转换 快捷键
查看>>
STL容器之vector
查看>>
数据中心虚拟化技术
查看>>