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

pull/439/head
xiaoxie 2022-04-20 13:56:30 +08:00
parent 4d975c21da
commit f635f9c300
1 changed files with 8 additions and 8 deletions

View File

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