修复录像列表:实测部分厂家(TP-Link IPC43AW)录像列表接口,返回的xml报文数据中有多余的空格,导致解析String为Integer失败,增加trim修复这个问题

This commit is contained in:
xiaoxie 2022-04-20 13:56:30 +08:00
parent fbd693faa5
commit 0ee1eb4274

View File

@ -62,7 +62,7 @@ public class XmlUtil {
}
Element e = em.element(tag);
//
return null == e ? null : e.getText();
return null == e ? null : e.getText().trim();
}
/**