forked from azhon/MyUtils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTimeUtils.java
111 lines (102 loc) · 2.73 KB
/
TimeUtils.java
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package com.hjtech.baselib.utils;
import java.text.SimpleDateFormat;
import java.util.Date;
/*
* 文件名: TimeUtils
* 创建者: 阿钟
* 创建时间: 2017/8/22 on 15:12
* 描述: TODO 时间格式化工具类
*/
public class TimeUtils {
/**
* 将时间戳转换为时间
*
* @param time 时间戳
* @return yyyy-MM-dd
*/
public static String yyyyMMdd(long time) {
if (time == 0)
return "";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd");
Date date = new Date(time);
return format.format(date);
}
/***
* 时间戳转换为时间
*
* @param time 时间戳
* @return HH:mm:ss
*/
public static String HHmmss(long time) {
if (time == 0)
return "";
SimpleDateFormat format = new SimpleDateFormat("HH:mm:ss");
Date date = new Date(time);
return format.format(date);
}
/***
* 时间戳转换为时间
*
* @param time 时间戳
* @return yyyy-MM-dd HH:mm
*/
public static String yyyyMMddHHmm(long time) {
if (time == 0)
return "";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm");
Date date = new Date(time);
return format.format(date);
}
/***
* 时间戳转换为时间
*
* @param time 时间戳
* @return yyyy-MM-dd HH:mm:ss
*/
public static String yyyyMMddHHmmss(long time) {
if (time == 0)
return "";
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
Date date = new Date(time);
return format.format(date);
}
/***
* 时间戳转换为时间
*
* @param time 时间戳
* @return MM-dd HH:mm
*/
public static String MMddHHmm(long time) {
if (time == 0) {
return "";
}
SimpleDateFormat format = new SimpleDateFormat("MM-dd HH:mm");
Date date = new Date(time);
return format.format(date);
}
/***
* 时间戳转换为时间
*
* @param time 时间戳
* @return MM-dd HH:mm:ss
*/
public static String MMddHHmmss(long time) {
if (time == 0) {
return "";
}
SimpleDateFormat format = new SimpleDateFormat("MM-dd HH:mm:ss");
Date date = new Date(time);
return format.format(date);
}
/***
* 时间转换为时间戳
*
* @param time 时间
* @param format 格式 例如:yyyy-MM-dd HH:mm:ss
* @return 时间戳
*/
public static long toTimeStamp(String time, String format) {
SimpleDateFormat format = new SimpleDateFormat(format);
return format.parse(time).getTime();
}
}