所以我有一个节点的属性,其中包含如下内容: number="1"
我想如果我解析=
我可以使用Integer.parseInt(node.getAttributes().item(i).toString()));
但这会返回以下错误:
java.lang.NumberFormatException: For input string: ""1""
所以现在我在做:
String[] value = node.getAttributes().item(i).toString().split("=\"");
String[] number = value[1].split("\"");
Integer.parseInt(number[0].toString()) // contains the right value 1
有没有更好、更清洁的方法呢?感觉这个很牛逼。。
编辑:
节点是这样定义的: org.w3c.dom.Node node = nodeList.item(index);