当前位置: 代码迷 >> J2SE >> xml报错,请帮忙,
  详细解决方案

xml报错,请帮忙,

热度:193   发布时间:2016-04-24 12:29:55.0
xml报错,请帮忙,在线等!!!!
Java code
String str ="<root><row id=123><RelySubType >SUN</RelySubType></row></root>";Document dom = DocumentHelper.parseText(str);Element root = dom.getRootElement();Iterator i= root.elementIterator("row");while(i.hasNext()){    Element foo= (Element)i.next();    String str1 = foo.attributeValue("id") ;    System.out.println(str1);            }


用的 DOM4J。
报错 Open quote is expected for attribute "id" associated with an element type "row". Nested exception: Open quote is expected for attribute "id" associated with an element type "row".

------解决方案--------------------
String str ="<root><row id=\"123\"><RelySubType >SUN</RelySubType></row></root>";
这样试一下
  相关解决方案