Java字符串转日期格式_java日期格式化类SimpledateFormat
JAVA字符串转日期或日期转字符串这种需求、相信基本上每个项目都要用到、当然我以往做的项目也一样、今天又遇到了这样的问题、记录一下、以方便以后的使用、我了解的日期操作类有两个、一个是DateFormat、另外一个是SimpleDateFormat
一、DateFormat
此类是一个日期的格式化类、专门格式化日期的操作、因为java.util.Date类本身就已经包含了完整的日期、所以只需要将些日期按照一些好的格式格式化一下显示就好了
DateFormat是一个抽象类、按照以住的思路、直接使用其子类实例化即可、但是DateFormat 类本身的内部提供了可以直接为其实例化的操作
得到日期的DateFormat对象
public static final DateFormat getDateInstance()
得到日期时间的DateFormat对象
public static final DateFormat getDateTimeInstance()
直接使用DateFormat类完成Date类的转换功能
public final String format(Date date)
下面是得到日期和日期加时间的方法
public static String getDateZH() { // 声明一个DateFormat DateFormat df1 = null; // 得到日期的DateFormat对象 df1 = DateFormat.getDateInstance(DateFormat.YEAR_FIELD, new Locale("zh", "CN")); return df1.format(new Date()); } public static String getDateTimeZH() { // 声明一个DateFormat DateFormat df2 = null; // 得到日期时间的DateFormat对象 df2 = DateFormat.getDateTimeInstance(DateFormat.YEAR_FIELD, DateFormat.ERA_FIELD, new Locale("zh", "CN")); return df2.format(new Date()); }
二、SimpleDateFormat
此类的功能是完成日期的显示格式化的、在开发中、可以会将一种日期格式变为另外一种日期格式、比如:将日期:2015-07-19 10:11:30.345转换为日期:2015年07月19日10点11分30秒345毫秒
但是以上的两个日期中日期的数字是完全一样的、唯一不同的是日期的显示格式不同、所以要想实现这样的转换功能就必须依靠SimpleDateFormat类
需要注意的是、在创建SimpleDateFormat的时候一定要指定时间区域、不然会有如下警告
To get local formatting use getDateInstance(), getDateTimeInstance(), or getTimeInstance(), or use new SimpleDateFormat(String template, Locale locale) with for example Locale.US for ASCII dates.
以下通过SimpleDateFormat把String转Date的方法和把Date转String的方法
// String 转换为 Date public static Date strToDate(String strdate) { DateFormat format = new SimpleDateFormat("yyyy-MM-dd", new Locale("zh", "CN")); Date date = null; try { date = format.parse(strdate); } catch (ParseException e) { e.printStackTrace(); } return date; } // Date 转换为 String public static String dateToStr(Date date) { // 年月日****-**-** DateFormat format = new SimpleDateFormat("yyyy-MM-dd", new Locale("zh", "CN")); String str = format.format(date); System.out.println("str:" str); // 年月日**-*-* format = DateFormat.getDateInstance(DateFormat.SHORT); str = format.format(date); System.out.println(str); // 年月日****-*-* format = DateFormat.getDateInstance(DateFormat.MEDIUM); str = format.format(date); System.out.println(str); // ****年*月*日星期* format = DateFormat.getDateInstance(DateFormat.FULL); str = format.format(date); System.out.println(str); return str; }
总结
DateFormat 可以直接使用、但其本身是一个抽象类、可以根据Locate指定的区域不同得到不同的日期时间显示效果、SimpleDateFormat 类是DateFormat 类的子类、一般情况下来讲 DateFormat 类很少会直接使用、而都使用SimpleDateFormat 类完成、最后我贴上我自己在项目中使用的一个Date操作类
源代码下载链接:http://dwtedx.com/download.html?bdkey=s/1bn70tHX 密码: g3ec