no message
parent
00afc73b0d
commit
b288a4fab8
|
|
@ -32,7 +32,7 @@ public class HttpPostUtil {
|
||||||
instr = urlCon.getInputStream();
|
instr = urlCon.getInputStream();
|
||||||
byte[] bis = IOUtils.toByteArray(instr);
|
byte[] bis = IOUtils.toByteArray(instr);
|
||||||
String ResponseString = new String(bis, StandardCharsets.UTF_8);
|
String ResponseString = new String(bis, StandardCharsets.UTF_8);
|
||||||
if (ResponseString.trim().isEmpty()) {
|
if (StringUtils.isEmpty(ResponseString)) {
|
||||||
log.error("返回空");
|
log.error("返回空");
|
||||||
}
|
}
|
||||||
str = ResponseString;
|
str = ResponseString;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue