欢迎来到天天文库
浏览记录
ID:8967243
大小:32.00 KB
页数:2页
时间:2018-04-13
《dateformat格式化日期java格式日期》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、格式化日期packagecom.java2010.swing05;importjava.text.DateFormat;importjava.util.Date;importjava.util.Locale;publicclassTest02{/***@paramargs*/publicstaticvoidmain(String[]args){//日期类Datedate=newDate();//格式日期DateFormatformat=DateFormat.getDateInstance(DateFormat.FULL,Locale.CHINA);//中国日期Stringstr=f
2、ormat.format(date);System.out.println("中国日期:t"+str);//加拿大format=DateFormat.getDateInstance(DateFormat.FULL,Locale.CANADA);str=format.format(date);System.out.println("加拿大日期:t"+str);//小日本format=DateFormat.getDateInstance(DateFormat.FULL,Locale.JAPAN);str=format.format(date);System.out.println(
3、"小日本日期:t"+str);//法国format=DateFormat.getDateInstance(DateFormat.FULL,Locale.FRANCE);str=format.format(date);System.out.println("法国日期:t"+str);//德国format=DateFormat.getDateInstance(DateFormat.FULL,Locale.GERMAN);str=format.format(date);System.out.println("德国日期:t"+str);//意大利format=DateFormat.g
4、etDateInstance(DateFormat.FULL,Locale.ITALIAN);str=format.format(date);System.out.println("意大利日期:t"+str);//美国format=DateFormat.getDateInstance(DateFormat.FULL,Locale.US);str=format.format(date);System.out.println("美国日期:t"+str);}}
此文档下载收益归作者所有