如何在使用dom创建xml时释放java中元素对象的内存?

时间:2017-05-05 12:46:42

标签: java xml dom

在使用Java创建xml文档时将子元素附加到其父元素后,我想释放" carname"元素对象。如何在不使用System.gc()的情况下释放内存?

Element carname = doc.createElement("carname");
Attr attrType = doc.createAttibute("type"); 
attrType.setValue("formula one"); 
carname.setAttributeNode(attrType); 
carname.appendChild(doc.createTextNode("Ferrari 101")); 
supercar.appendChild(carname);

0 个答案:

没有答案