vlinDone
BlogJava
首页
新文章
新随笔
聚合
管理
posts - 33, comments - 17, trackbacks - 0
取得服务器当前的各种具体时间
1
/** */
/**
2
* 取得服务器当前的各种具体时间
3
* 回车:日期时间
4
*/
5
6
import
java.util.
*
;
7
8
public
class
GetNowDate
{
9
Calendar calendar
=
null
;
10
11
public
GetNowDate()
{
12
calendar
=
Calendar.getInstance();
13
calendar.setTime(
new
Date());
14
}
15
16
public
int
getYear()
{
17
return
calendar.get(Calendar.YEAR);
18
}
19
20
public
int
getMonth()
{
21
return
1
+
calendar.get(Calendar.MONTH);
22
}
23
24
public
int
getDay()
{
25
return
calendar.get(Calendar.DAY_OF_MONTH);
26
}
27
28
public
int
getHour()
{
29
return
calendar.get(Calendar.HOUR_OF_DAY);
30
}
31
32
public
int
getMinute()
{
33
return
calendar.get(Calendar.MINUTE);
34
}
35
36
public
int
getSecond()
{
37
return
calendar.get(Calendar.SECOND);
38
}
39
40
public
String getDate()
{
41
return
getMonth()
+
"
/
"
+
getDay()
+
"
/
"
+
getYear();
42
}
43
44
public
String getTime()
{
45
return
getHour()
+
"
:
"
+
getMinute()
+
"
:
"
+
getSecond();
46
}
47
48
public
String getDate2()
{
49
String yyyy
=
"
0000
"
, mm
=
"
00
"
, dd
=
"
00
"
;
50
yyyy
=
yyyy
+
getYear();
51
mm
=
mm
+
getMonth();
52
dd
=
dd
+
getDay();
53
yyyy
=
yyyy.substring(yyyy.length()
-
4
);
54
mm
=
mm.substring(mm.length()
-
2
);
55
dd
=
dd.substring(dd.length()
-
2
);
56
return
yyyy
+
"
/
"
+
mm
+
"
/
"
+
dd;
57
}
58
59
public
String getTime2()
{
60
String hh
=
"
00
"
, mm
=
"
00
"
, ss
=
"
00
"
;
61
hh
=
hh
+
getHour();
62
mm
=
mm
+
getMinute();
63
ss
=
ss
+
getSecond();
64
hh
=
hh.substring(hh.length()
-
2
, hh.length());
65
mm
=
mm.substring(mm.length()
-
2
, mm.length());
66
ss
=
ss.substring(ss.length()
-
2
, ss.length());
67
return
hh
+
"
:
"
+
mm
+
"
:
"
+
ss;
68
}
69
}
posted on 2008-07-23 17:34
scea2009
阅读(103)
评论(0)
编辑
收藏
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
<
2008年7月
>
日
一
二
三
四
五
六
29
30
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
1
2
3
4
5
6
7
8
9
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔分类
个人
网摘(6)
随笔档案
2008年12月 (2)
2008年8月 (1)
2008年7月 (24)
2008年6月 (1)
2008年5月 (4)
PL/SQL存储过程与函数
搜索
最新评论
1. re: 18位号码身份证校验码的计算公式[未登录]
1@邱丽娟
--李杰
2. re: 生成 JSON 字符串的工具
ddddddddd
--hls
3. re: 18位号码身份证校验码的计算公式
340621198706139338
--陆树军
4. re: 生成 JSON 字符串的工具
12121
--11112dacda
5. re: 18位号码身份证校验码的计算公式
wozhidao
--lixziyu
阅读排行榜
1. 18位号码身份证校验码的计算公式(25051)
2. 生成 JSON 字符串的工具 (4954)
3. s:select(2859)
4. 关于 Calendar.getInstance()(1408)
5. 根据输入的ISBN号,检验ISBN的有效性(1394)
评论排行榜
1. 18位号码身份证校验码的计算公式(10)
2. 根据输入的ISBN号,检验ISBN的有效性(4)
3. 生成 JSON 字符串的工具 (2)
4. 时间计算工具类(1)
5. 数据库连接(0)