Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xxl-job
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
刘晓滨
xxl-job
Commits
8c3b8c7d
Commit
8c3b8c7d
authored
Dec 04, 2018
by
陈烨
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
新增makeYesterdayStr
parent
75d2de73
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
DateUtil.java
...ob-core/src/main/java/com/xxl/job/core/util/DateUtil.java
+9
-0
No files found.
xxl-job-core/src/main/java/com/xxl/job/core/util/DateUtil.java
View file @
8c3b8c7d
...
...
@@ -2838,4 +2838,12 @@ public class DateUtil {
return
(
second
/
3600
>
0
?
hour
+
":"
:
""
)
+
min
+
"'"
+
sec
+
"''"
;
}
public
static
String
makeYesterdayStr
()
{
Date
date
=
getCurrentTimeDate
();
Long
yesterday
=
date
.
getTime
()
-
1000
*
60
*
60
*
24L
;
date
.
setTime
(
yesterday
);
String
dateStr
=
DateUtil
.
dateToString
(
date
,
DateUtil
.
DATETIME_FORMAT
);
return
dateStr
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment