-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTimeUtils.java
More file actions
25 lines (21 loc) · 809 Bytes
/
Copy pathTimeUtils.java
File metadata and controls
25 lines (21 loc) · 809 Bytes
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
package com.yuantuan.ytwebview.utils;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* =============================================================================
* [YTF] (C)2015-2099 Yuantuan Inc.
* Link http://www.ytframework.cn
* =============================================================================
*
* @author Like<[email protected]>
* @created 2016/6/28.
* @description 时间有关的工具类
* =============================================================================
*/
public class TimeUtils {
public static String getSystemTime() {
SimpleDateFormat formatter = new SimpleDateFormat("MM月dd日HH:mm:ss");
Date curDate = new Date(System.currentTimeMillis());//获取当前时间
return formatter.format(curDate);
}
}