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
ddbe93eb
Commit
ddbe93eb
authored
Jun 18, 2020
by
张永
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
加方法
parent
769207c0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
HttpUtil.java
src/main/java/com/egolm/common/HttpUtil.java
+21
-0
No files found.
src/main/java/com/egolm/common/HttpUtil.java
View file @
ddbe93eb
...
...
@@ -275,6 +275,27 @@ public class HttpUtil {
}
return
StringUtil
.
join
(
"&"
,
params
);
}
public
static
String
formatToQueryStringAndNull
(
Map
<?,
?>
parameters
)
{
List
<
String
>
params
=
new
ArrayList
<
String
>();
if
(
parameters
!=
null
)
{
for
(
Object
key
:
parameters
.
keySet
())
{
Object
val
=
parameters
.
get
(
key
);
String
sKey
=
String
.
valueOf
(
key
);
Object
[]
sVals
=
(
val
==
null
?
null
:
(
val
instanceof
Object
[]
?
(
Object
[])
val
:
(
val
instanceof
Collection
<?>
?
((
Collection
<?>)
val
).
toArray
()
:
new
Object
[]
{
val
})));
if
(
sVals
!=
null
&&
sVals
.
length
>
0
)
{
for
(
Object
sVal
:
sVals
)
{
if
(
StringUtil
.
isNotEmpty
(
sVal
))
{
params
.
add
(
sKey
+
"="
+
sVal
);
}
}
}
else
{
params
.
add
(
sKey
+
"="
);
//空值 参与签名 字节跳动
}
}
}
return
StringUtil
.
join
(
"&"
,
params
);
}
public
static
String
post
(
String
requestUrl
,
Map
<
String
,
Object
>
parameters
,
Map
<
String
,
String
>
headers
,
Map
<
String
,
File
>
attachments
,
String
contentType
)
{
...
...
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