关于解析xml时报org.xml.sax.SAXParseException: The value of attribute "description" associated with an element type "vars" must not contain the '<' character.
解决办法是:先看xml解析的jar包的编码格式,我的是utf-8
下面在看要解析的文件的编码格式
所以在跑代码的时候解析就会报异常
要解决这个报错,要把解析文件内容改成xml解析jar包一样的编码格式,我这里是utf-8,所以把解析的文件改为utf-8
看结果:乱码解决,不再报错