
xml
IT_Joy520Jay
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
xml转化成list集合
public static List<Map<String, String>> xml2list(String xml,String node) { xml =xml.replace("\n","").replace(" ",""); List<Map<String, String>> resList = n原创 2018-07-26 15:49:17 · 11488 阅读 · 3 评论 -
使用XMLSerializer报错java.lang.NoClassDefFoundError: nu/xom/ParentNode
解决方案: 引入xom包; maven仓库地址:https://mvnrepository.com/artifact/xom/xom 目前最新版本为1.2.5,遗憾的是这个包在2010年月就已经停更了。 pom.xml中添加依赖如下: <dependency> <groupId>xom</groupId> <artifactId&g...转载 2019-08-13 10:57:47 · 721 阅读 · 0 评论