selectNodes("//name"); //遍歷list集合 for (Node node : list) { //node是每一個name元素 //得到name元素裡面的值 String s = node.getText(); ...
確定! 回上一頁