|
@@ -69,6 +69,9 @@ public class EzXmlUtil {
|
|
if (content.size() > 0) {
|
|
if (content.size() > 0) {
|
|
Element firstEle = content.get(0);
|
|
Element firstEle = content.get(0);
|
|
String key = firstEle.getStringValue();
|
|
String key = firstEle.getStringValue();
|
|
|
|
+ if (key.endsWith(":")) {
|
|
|
|
+ key = key.substring(0, key.length() - 1);
|
|
|
|
+ }
|
|
String value = "";
|
|
String value = "";
|
|
for (int i = 1; i < content.size(); i++) {
|
|
for (int i = 1; i < content.size(); i++) {
|
|
String v = content.get(i).getStringValue();
|
|
String v = content.get(i).getStringValue();
|