mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-11 21:57:56 +08:00
2.0
This commit is contained in:
@@ -37,7 +37,11 @@ public class OpenUtil {
|
|||||||
if (StringUtils.containsAny(contentType, MediaType.APPLICATION_JSON_VALUE, MediaType.TEXT_PLAIN_VALUE)) {
|
if (StringUtils.containsAny(contentType, MediaType.APPLICATION_JSON_VALUE, MediaType.TEXT_PLAIN_VALUE)) {
|
||||||
try {
|
try {
|
||||||
String requestJson = IOUtils.toString(request.getInputStream(), StandardCharsets.UTF_8);
|
String requestJson = IOUtils.toString(request.getInputStream(), StandardCharsets.UTF_8);
|
||||||
jsonObject = JSON.parseObject(requestJson);
|
if (StringUtils.isBlank(requestJson)) {
|
||||||
|
jsonObject = new JSONObject();
|
||||||
|
} else {
|
||||||
|
jsonObject = JSON.parseObject(requestJson);
|
||||||
|
}
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
jsonObject = new JSONObject();
|
jsonObject = new JSONObject();
|
||||||
log.error("获取文本数据流失败", e);
|
log.error("获取文本数据流失败", e);
|
||||||
|
Reference in New Issue
Block a user