jn_shaotengjie 2015-09-22 06:43 采纳率: 0%
浏览 4225

java 解析XML串成数组

图片说明

上面是一个XML格式字符串,怎么用java解析成为一个数组
{5,test2, test2, jn@163.com, 0}

public static LinkedList uc_unserialize(String input){

    LinkedList<String> result = new LinkedList<String>();

    DOMParser parser = new DOMParser();
    try {
        StringReader cc = new StringReader(input);
        InputSource bb = new InputSource(cc);
        parser.parse(input);

        Document doc = parser.getDocument();
        NodeList nl = doc.getChildNodes().item(0).getChildNodes();
        int length = nl.getLength();
        for(int i=0;i<length;i++){
            if(nl.item(i).getNodeType()==Document.ELEMENT_NODE)
                result.add(nl.item(i).getNodeValue());
        }
    } catch (SAXException e) {
    } catch (IOException e) {
    }
    return result;
}

代码执行后,doc 始终是null
  • 写回答

1条回答 默认 最新

  • cui136 2015-09-22 06:40
    关注

    按空格拆分手动封装成数组呗

    评论

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码