当前位置:  开发笔记 > 编程语言 > 正文

如何在Java 1.4中向XML节点添加属性

如何解决《如何在Java1.4中向XML节点添加属性》经验,为你挑选了0个好方法。

我试过了:

DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();

DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(f);
Node mapNode = getMapNode(doc);
System.out.print("\r\n elementName "+ mapNode.getNodeName());//This works fine.

Element e = (Element) mapNode; //This is where the error occurs
//it seems to work on my machine, but not on the server.
e.setAttribute("objectId", "OBJ123");

但是这会在将其强制转换为Element的行上抛出java.lang.ClassCastException错误. mapNode是一个有效的节点. 我已经将它打印出来了

我想这个代码可能在Java 1.4中不起作用.我真正需要的是使用Element的替代方案.我试过了

NamedNodeMap atts = mapNode.getAttributes();
    Attr att = doc.createAttribute("objId");
    att.setValue(docId);    
    atts.setNamedItem(att);

但是getAttributes()在服务器上返回null.即使它不是,我在本地使用与服务器上相同的文档.它可以打印出getNodeName(),只是getAttributes()不起作用.

推荐阅读
TXCWB_523
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有