simpledateformat是处理日期格式转换的类。
官方api_1.8关于simpledateformat继承于dateformate截图:
simpledateformat的构造器如下:
simpledateformat中的格式定义,常用的用红色框圈出:
中文解释:
y : 年
m : 年中的月份
d : 年中的天数
d : 月中的天数
w : 年中的周数
w : 月中的周数
a : 上下/下午
h : 一天中的小时数(0-23)
h : 一天中的小时数(0-12)
m : 小时中的分钟
s : 分钟中的秒数
s : 毫秒数
simpledateformat方法:
继承于dateformate的方法:
simpledateformat常用方法和常用格式定义使用实例:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
package com.lanhuigu.java.format; import java.text.parseexception; import java.text.simpledateformat; import java.util.date; public class formattest { public static void main(string[] args) throws parseexception { // **************1.(format,parse)最常用方法实例************* system.out.println( "----------最常用方法---------" ); // 格式 simpledateformat sdf1 = new simpledateformat( "yyyy-mm-dd hh:mm:ss" ); // 时间 date date1 = new date(); system.out.println( "操作前的时间:" + date1); // 日期类型时间-》转换为定义格式-》字符串类型时间 /* * 注意: format(date date)这个方法来自于simpledateformat的父类dateformat */ string str1 = sdf1.format(date1); system.out.println("字符串类型时间:" + str1); // 字符串类型时间-》转换为定义格式-》日期类型时间 date datef1 = sdf1.parse(str1); system.out.println("日期类型时间:" + datef1); // **************2.关于常用格式分析************* system.out.println("----------常用格式分析---------"); /* * y : 年 * m : 年中的月份 * d : 年中的天数 * d : 月中的天数 * w : 年中的周数 * w : 月中的周数 * a : 上下/下午 * h : 一天中的小时数(0-23) * h : 一天中的小时数(0-12) * m : 小时中的分钟 * s : 分钟钟的秒数 * s : 毫秒数 */ // 注意,为了省事,这个地方把常用的都放进来了,一起打印看效果, // 在实际使用中,根据需求进行相应格式转换 simpledateformat sdf2 = new simpledateformat("yyyy-mm-dd,w,w,a,hh:mm:ss,ss"); string str2 = sdf2.format(new date()); system.out.println("日期类型时间:" + str2); system.out.println("字符串类型时间:" + sdf2.parse(str2)); // **************2.关于构造器使用技巧分析************* system.out.println("----------构造器使用技巧分析---------"); /* * 构造器: * simpledateformat(); * simpledateformat(string pattern); * simpledateformat(string pattern, dateformatsymbols formatsymbols); * simpledateformat(string pattern, locale locale) */ // 通过对应构造器构造对象,直接调用方法,简洁写法 system.out.println( new simpledateformat( "yyyy-mm-dd hh:mm:ss" ).format( new date())); } } |
程序运行结果:
总结
关于simpledateformate需会使用其不同参数下的常用方法,以及常用格式,构造器简写方式。
以上就是本文全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
原文链接:http://blog.csdn.net/yhl_jxy/article/details/53424717