!903 修复#I676IT

Merge pull request !903 from Xeons/v5-dev
This commit is contained in:
Looly 2022-12-27 11:27:12 +00:00 committed by Gitee
commit f4d73ee66e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 43 additions and 4 deletions

View File

@ -87,13 +87,13 @@ public class JSONXMLSerializer {
} else if (value instanceof JSONArray) {
for (Object val : (JSONArray) value) {
if (val instanceof JSONArray) {
sb.append(wrapWithTag(toXml(val), key));
sb.append(wrapWithTag(toXml(val, null, contentKeys), key));
} else {
sb.append(toXml(val, key));
sb.append(toXml(val, key, contentKeys));
}
}
} else {
sb.append(toXml(value, key));
sb.append(toXml(value, key, contentKeys));
}
});
@ -111,7 +111,7 @@ public class JSONXMLSerializer {
// XML does not have good support for arrays. If an array
// appears in a place where XML is lacking, synthesize an
// <array> element.
sb.append(toXml(val, tagName == null ? "array" : tagName));
sb.append(toXml(val, tagName == null ? "array" : tagName, contentKeys));
}
return sb.toString();
}

View File

@ -0,0 +1,20 @@
package cn.hutool.json;
import cn.hutool.core.io.resource.ResourceUtil;
import cn.hutool.core.util.XmlUtil;
import cn.hutool.json.xml.JSONXMLSerializer;
import org.junit.Assert;
import org.junit.Test;
import static javax.xml.xpath.XPathConstants.STRING;
public class IssueI676IT {
@Test
public void parseXMLTest() {
final JSONObject jsonObject = JSONUtil.parseObj(ResourceUtil.readUtf8Str("issueI676IT.json"));
String xmlStr = JSONXMLSerializer.toXml(jsonObject, null, (String) null);
String content = String.valueOf(XmlUtil.getByXPath("/page/orderItems[1]/content", XmlUtil.readXML(xmlStr), STRING));
Assert.assertEquals(content, "bar1");
}
}

View File

@ -0,0 +1,19 @@
{
"page": {
"pageSize": 33,
"currentPage": 81,
"totalSize": 49,
"orderItems": [
{
"asc": true,
"columnName": "foo",
"content": "bar1"
},
{
"asc": false,
"columnName": "foo",
"content": "bar2"
}
]
}
}