论坛首页 Java企业应用论坛

缓存org.w3c.dom.Element类型,怎样使用另一个doc的元素

浏览 2302 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2009-02-20  

      今天对xml报文的头做缓存,第一次直接保存上一次生成好的doc中的Element元素到内存中,发现下次从内存中取出来的Element元素是null。

(代码不能直接使用,只做说明原理用)

缓存的代码

hmmeta.put(dataset.getDataSetName(),
                           new Meta((Element)ele, dataFields, newSql.toString()));

 使用的代码

 

this.fields=hmmeta.get(dsname).getFields();

 发现得到的fields是null。

 

尝试下面的方法

缓存的代码

hmmeta.put(dataset.getDataSetName(),
                           new Meta((NodeList)ele.getElementsByTagName("FIELD"), dataFields, newSql.toString()));

 引用的代码

 

NodeList fields = (NodeList)hmmeta.get(dsname).getNodeList();
for(int i=0;i<fields.getLength();i++){
      this.fields.appendChild(fields.item(i));
    }

 结果报异常

WRONG_DOCUMENT_ERR:   That   node   doesn't   belong   in   t   
  his   document.  

 意思是不能使用另一个doc的元素。

 

上网搜索得到下面的解决方法

缓存代码

hmmeta.put(dataset.getDataSetName(),
                           new Meta((NodeList)ele.getElementsByTagName("FIELD"), dataFields, newSql.toString()));

 使用缓存中数据

NodeList fields = (NodeList)hmmeta.get(dsname).getNodeList();
for(int i=0;i<fields.getLength();i++){
      this.fields.appendChild(outdoc.importNode(fields.item(i),true));
    }

 不知道各位有没有更好的方法。

论坛首页 Java企业应用版

跳转论坛:
Global site tag (gtag.js) - Google Analytics