博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java Date API demo
阅读量:6160 次
发布时间:2019-06-21

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

 

package date;import java.text.DateFormat;import java.util.Calendar;import java.util.Date;/*2015-9-9*/public class DateDemo {    /**     * @param args     */    public static void main(String[] args) {        Date now = new Date();        System.out.println("用Date方式显示时间: " + now);//此方法显示的结果和Calendar.getInstance().getTime()一样        DateFormat d1 = DateFormat.getDateInstance(); //默认语言(汉语)下的默认风格(MEDIUM风格,比如:2008-6-16 20:54:53)        String str1 = d1.format(now);        System.out.println("用DateFormat.getDateInstance()格式化时间后为:" + str1);        DateFormat d2 = DateFormat.getDateTimeInstance();        String str2 = d2.format(now);        System.out.println("用DateFormat.getDateTimeInstance()格式化时间后为:" + str2);        DateFormat d3 = DateFormat.getTimeInstance();        String str3 = d3.format(now);        System.out.println("用DateFormat.getTimeInstance()格式化时间后为:" + str3);        DateFormat d4 = DateFormat.getInstance(); //使用SHORT风格显示日期和时间        String str4 = d4.format(now);        System.out.println("用DateFormat.getInstance()格式化时间后为:" + str4);        DateFormat d5 = DateFormat.getDateTimeInstance(DateFormat.FULL, DateFormat.FULL); //显示日期,周,时间(精确到秒)        String str5 = d5.format(now);        System.out.println("用DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL)格式化时间后为:" + str5);        DateFormat d6 = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG); //显示日期。时间(精确到秒)        String str6 = d6.format(now);        System.out.println("用DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG)格式化时间后为:" + str6);        DateFormat d7 = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT); //显示日期,时间(精确到分)        String str7 = d7.format(now);        System.out.println("用DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT)格式化时间后为:" + str7);        DateFormat d8 = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM); //显示日期,时间(精确到分)        String str8 = d8.format(now);//与SHORT风格相比,这种方式最好用        System.out.println("用DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM)格式化时间后为:" + str8);        DateFormat d9=DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM);        String str9=d9.format(now);        System.out.println("DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM)"+str9);        Calendar ca = Calendar.getInstance();        int year = ca.get(Calendar.YEAR);//获取年份        int month = ca.get(Calendar.MONTH);//获取月份        int day = ca.get(Calendar.DATE);//获取日        int minute = ca.get(Calendar.MINUTE);//分        int hour = ca.get(Calendar.HOUR);//小时        int second = ca.get(Calendar.SECOND);//秒        int WeekOfYear = ca.get(Calendar.DAY_OF_WEEK);        System.out.println("用Calendar.getInstance().getTime()方式显示时间: " + ca.getTime());        System.out.println("用Calendar获得日期是:" + year + "年" + month + "月" + day + "日");        System.out.println("用Calendar获得时间是:" + hour + "时" + minute + "分" + second + "秒");        System.out.println(WeekOfYear);//显示今天是一周的第几天(我做的这个例子正好是周二,故结果显示2,如果你再周6运行,那么显示6)                    }}

输出:

用Date方式显示时间: Wed Sep 09 21:37:04 CST 2015用DateFormat.getDateInstance()格式化时间后为:2015-9-9用DateFormat.getDateTimeInstance()格式化时间后为:2015-9-9 21:37:04用DateFormat.getTimeInstance()格式化时间后为:21:37:04用DateFormat.getInstance()格式化时间后为:15-9-9 下午9:37用DateFormat.getDateTimeInstance(DateFormat.FULL,DateFormat.FULL)格式化时间后为:2015年9月9日 星期三 下午09时37分04秒 CST用DateFormat.getDateTimeInstance(DateFormat.LONG,DateFormat.LONG)格式化时间后为:2015年9月9日 下午09时37分04秒用DateFormat.getDateTimeInstance(DateFormat.SHORT,DateFormat.SHORT)格式化时间后为:15-9-9 下午9:37用DateFormat.getDateTimeInstance(DateFormat.MEDIUM,DateFormat.MEDIUM)格式化时间后为:2015-9-9 21:37:04DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM)2015年9月9日 21:37:04用Calendar.getInstance().getTime()方式显示时间: Wed Sep 09 21:37:04 CST 2015用Calendar获得日期是:2015年8月9日用Calendar获得时间是:9时37分4秒4

 

转载地址:http://xqafa.baihongyu.com/

你可能感兴趣的文章
在VMware网络测试“专用VLAN”功能
查看>>
使用Formik轻松开发更高质量的React表单(三)<Formik />解析
查看>>
也问腾讯:你把用户放在什么位置?
查看>>
CSS Sprites 样式生成工具(bg2css)
查看>>
[转]如何重构代码--重构计划
查看>>
类中如何对list泛型做访问器??
查看>>
C++解析XML--使用CMarkup类解析XML
查看>>
P2P应用层组播
查看>>
Sharepoint学习笔记—修改SharePoint的Timeouts (Execution Timeout)
查看>>
CSS引入的方式有哪些? link和@import的区别?
查看>>
Redis 介绍2——常见基本类型
查看>>
asp.net开发mysql注意事项
查看>>
(转)Cortex-M3 (NXP LPC1788)之EEPROM存储器
查看>>
ubuntu set defult jdk
查看>>
[译]ECMAScript.next:TC39 2012年9月会议总结
查看>>
【Xcode】编辑与调试
查看>>
用tar和split将文件分包压缩
查看>>
[BTS] Could not find stored procedure 'mp_sap_check_tid'
查看>>
PLSQL DBMS_DDL.ALTER_COMPILE
查看>>
Activity生命周期
查看>>