Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
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
YZG
yzg-util
Commits
e6a2add1
Commit
e6a2add1
authored
Apr 02, 2019
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加日期处理
parent
33ac50cc
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
1 deletion
+29
-1
DateHelper.java
...src/main/java/com/yanzuoguang/util/helper/DateHelper.java
+29
-1
No files found.
yzg-util-base/src/main/java/com/yanzuoguang/util/helper/DateHelper.java
View file @
e6a2add1
...
@@ -435,7 +435,7 @@ public class DateHelper {
...
@@ -435,7 +435,7 @@ public class DateHelper {
*
*
* @param date 当前日期
* @param date 当前日期
* @param year 需要增加的年份
* @param year 需要增加的年份
* @return 增加
年份
后的值
* @return 增加
之
后的值
*/
*/
public
static
Date
addYear
(
Date
date
,
int
year
)
{
public
static
Date
addYear
(
Date
date
,
int
year
)
{
Calendar
cal
=
Calendar
.
getInstance
();
Calendar
cal
=
Calendar
.
getInstance
();
...
@@ -444,6 +444,34 @@ public class DateHelper {
...
@@ -444,6 +444,34 @@ public class DateHelper {
return
cal
.
getTime
();
return
cal
.
getTime
();
}
}
/**
* 增加月份处理
*
* @param date 当前日期
* @param month 需要增加的月份
* @return 增加之后的值
*/
public
static
Date
addMonth
(
Date
date
,
int
month
)
{
Calendar
cal
=
Calendar
.
getInstance
();
cal
.
setTime
(
date
);
cal
.
add
(
Calendar
.
MONTH
,
month
);
return
cal
.
getTime
();
}
/**
* 增加日期处理
*
* @param date 当前日期
* @param day 需要增加的日期
* @return 增加之后的值
*/
public
static
Date
addDay
(
Date
date
,
int
day
)
{
Calendar
cal
=
Calendar
.
getInstance
();
cal
.
setTime
(
date
);
cal
.
add
(
Calendar
.
DATE
,
day
);
return
cal
.
getTime
();
}
/**
/**
* 获取当前时间,精准到秒,格式为: yyyy-MM-dd HH:mm:ss
* 获取当前时间,精准到秒,格式为: yyyy-MM-dd HH:mm:ss
*
*
...
...
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