Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
C
common
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
曲欣亮
common
Commits
38334d5a
Commit
38334d5a
authored
Jul 25, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://key@gitlab.egolm.com/key/common.git
parents
bcfe718f
aa71e6cf
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
582 additions
and
526 deletions
+582
-526
DateUtil.java
src/main/java/com/egolm/common/DateUtil.java
+200
-147
HttpUtil.java
src/main/java/com/egolm/common/HttpUtil.java
+382
-379
No files found.
src/main/java/com/egolm/common/DateUtil.java
View file @
38334d5a
This diff is collapsed.
Click to expand it.
src/main/java/com/egolm/common/HttpUtil.java
View file @
38334d5a
...
...
@@ -261,11 +261,14 @@ public class HttpUtil {
:
(
val
instanceof
Object
[]
?
(
Object
[])
val
:
new
Object
[]
{
val
}));
if
(
sVals
!=
null
&&
sVals
.
length
>
0
)
{
for
(
Object
sVal
:
sVals
)
{
params
.
add
(
sKey
+
"="
+
(
sVal
==
null
?
""
:
sVal
));
if
(
StringUtil
.
isNotEmpty
(
sVal
))
{
params
.
add
(
sKey
+
"="
+
sVal
);
}
}
}
else
{
params
.
add
(
sKey
+
"="
);
}
/*else {
params.add(sKey + "="); 空值不参与签名
}*/
}
}
return
StringUtil
.
join
(
"&"
,
params
);
...
...
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