日期和时间格式化实用程序和常量
public static String format(Calendar calendar, String pattern)说明:将日历格式化为特定的模式;
参数:calendar-格式化的日历对象,非null;pattern-用于格式化日历的模式,非null;返回值:格式化日历;123 Calendar cal = Calendar.getInstance(); System.out.println(DateFormatUtils.format(cal, "yyyy-MM-dd HH:mm:ss"));输出结果:2018-01-23 19:50:55
12345public static String format(Calendar calendar, String pattern,TimeZone timeZone)说明:将日历格式化为特定的模式;
参数:calendar-格式化的日历对象,非null;pattern-用于格式化日历的模式,非null;timeZone-时区 返回值:格式化日历;123 Calendar cal = Calendar.getInstance(); System.out.println(DateFormatUtils.format(cal, "yyyy-MM-dd HH:mm:ss", TimeZone.getDefault()));12public static String format(Calendar calendar, String pattern, Locale locale)说明:将日历格式化为特定的模式;
参数:calendar-格式化的日历对象,非null;pattern-用于格式化日历的模式,非null;locale-本地化返回值:格式化日历;123 Calendar cal = Calendar.getInstance(); System.out.println(DateFormatUtils.format(cal, "yyyy-MM-dd HH:mm:ss", Locale.CHINA));12public static String format(Calendar calendar,String pattern,TimeZone timeZone,Locale locale)说明:格式化日期时指定时区和本地化参数;
1public static String format(Date date, String pattern)说明:将日期格式化为特定的模式;
参数:date-格式化的日期对象,非null;pattern-用于格式化日期的模式,非null;返回值:格式化日期;123 Date date = new Date(); System.out.println(DateFormatUtils.format(date, "yyyy-MM-dd HH:mm:ss"));12public static String format(Date date,String pattern,TimeZone timeZone)说明:将日期格式化为特定的模式;
参数:date-格式化的日期对象,非null;pattern-用于格式化日期的模式,非null;timeZone-时区 返回值:格式化日期;123 Date date = new Date(); System.out.println(DateFormatUtils.format(date, "yyyy-MM-dd HH:mm:ss", TimeZone.getDefault()));12public static String format(Date date, String pattern, Locale locale)说明:将日期格式化为特定的模式;
参数:date-格式化的日期对象,非null;pattern-用于格式化日期的模式,非null;locale-本地化参数返回值:格式化日期;123public static String format(Calendar calendar,String pattern,TimeZone timeZone,Locale locale)说明:格式化日期时指定时区和本地化参数;
1public static String format(long millis,String pattern)说明:将日期/时间格式化为特定的模式;
参数:mills-以毫秒表示格式的日期;pattern-格式化的模式;12public static String formatUTC(Date date,String pattern)说明:使用UTC时区将日期/时间格式化为特定的模式;
参数:date-要格式化的时间;pattern-格式化的模式;返回值:格式化的日期;--------------------- 作者:随风yy 来源:CSDN 原文:https://blog.csdn.net/yaomingyang/article/details/79143954 版权声明:本文为博主原创文章,转载请附上博文链接!