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
217fa9a9
Commit
217fa9a9
authored
Jun 22, 2022
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
升级新版本
parent
0f07febc
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
18 deletions
+26
-18
WxXcxRequestImpl.java
...ain/java/com/yanzuoguang/wxxcx/base/WxXcxRequestImpl.java
+9
-10
WxXcxRequestPostApplication.java
...m/yanzuoguang/wxxcx/base/WxXcxRequestPostApplication.java
+1
-8
WxXcxRequestPostFormData.java
.../com/yanzuoguang/wxxcx/base/WxXcxRequestPostFormData.java
+16
-0
No files found.
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/base/WxXcxRequestImpl.java
View file @
217fa9a9
...
@@ -32,16 +32,15 @@ public class WxXcxRequestImpl implements WxXcxRequest {
...
@@ -32,16 +32,15 @@ public class WxXcxRequestImpl implements WxXcxRequest {
}
}
String
response
;
String
response
;
try
{
try
{
if
(
req
instanceof
WxXcxRequestPost
)
{
if
(
req
instanceof
WxXcxRequestPostFormData
)
{
WxXcxRequestPost
post
=
(
WxXcxRequestPost
)
req
;
WxXcxRequestPostFormData
post
=
(
WxXcxRequestPostFormData
)
req
;
if
(
post
.
isJson
())
{
HttpURLConnection
conn
=
HttpHelper
.
getConn
(
url
,
header
);
response
=
HttpHelper
.
post
(
conn
,
post
.
getPost
(),
charSet
);
}
else
if
(
req
instanceof
WxXcxRequestPostApplication
)
{
WxXcxRequestPostApplication
post
=
(
WxXcxRequestPostApplication
)
req
;
// 打开URL连接
// 打开URL连接
java
.
net
.
HttpURLConnection
httpConn
=
HttpHelper
.
getConn
(
url
,
header
,
true
);
java
.
net
.
HttpURLConnection
httpConn
=
HttpHelper
.
getConn
(
url
,
header
,
true
);
response
=
HttpHelper
.
post
(
httpConn
,
post
.
getPost
(),
charSet
);
response
=
HttpHelper
.
post
(
httpConn
,
post
.
getPost
(),
charSet
);
}
else
{
HttpURLConnection
conn
=
HttpHelper
.
getConn
(
url
,
header
);
response
=
HttpHelper
.
post
(
conn
,
post
.
getPost
(),
charSet
);
}
}
else
{
}
else
{
HttpURLConnection
conn
=
HttpHelper
.
getConn
(
url
,
header
);
HttpURLConnection
conn
=
HttpHelper
.
getConn
(
url
,
header
);
response
=
HttpHelper
.
get
(
conn
);
response
=
HttpHelper
.
get
(
conn
);
...
...
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/base/WxXcxRequestPost.java
→
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/base/WxXcxRequestPost
Application
.java
View file @
217fa9a9
...
@@ -5,14 +5,7 @@ package com.yanzuoguang.wxxcx.base;
...
@@ -5,14 +5,7 @@ package com.yanzuoguang.wxxcx.base;
*
*
* @author 颜佐光
* @author 颜佐光
*/
*/
public
interface
WxXcxRequestPost
{
public
interface
WxXcxRequestPostApplication
{
/**
* 是否json
*
* @return 是否json
*/
boolean
isJson
();
/**
/**
* 获取请求地址
* 获取请求地址
...
...
yzg-util-wxxcx/src/main/java/com/yanzuoguang/wxxcx/base/WxXcxRequestPostFormData.java
0 → 100644
View file @
217fa9a9
package
com
.
yanzuoguang
.
wxxcx
.
base
;
/**
* 获取请求地址
*
* @author 颜佐光
*/
public
interface
WxXcxRequestPostFormData
{
/**
* 获取请求地址
*
* @return 请求地址
*/
String
getPost
();
}
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