前端之家收集整理的这篇文章主要介绍了
xml简单工具类,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
/*
* 运用Dom4j实现一个简单的工具类
*/
public class XMLUtils {
private XMLUtils(){}
//获取文档对象
public static Document getDocument(File file) {
Document doc = null;
SAXReader sax = new SAXReader();
try {
doc = sax.read(file);
} catch (DocumentException e) {
e.printStackTrace();
}
return doc;
}
//写入文档
public static void writerToXml(Document doc,File file) {
OutputFormat opf = OutputFormat.createPrettyPrint(); // 排版格式
opf.setEncoding("utf-8");
// OutputFormat opf=OutputFormat.createCompactFormat();//紧凑格式
// 写入所需要的xml文件
OutputStream os=null;
XMLWriter xmlWriter=null;
try{
os= new FileOutputStream(file);
// 创建一个XMLWriter对象
xmlWriter = new XMLWriter(os,opf);
//写出到目标文件
xmlWriter.write(doc);
} catch (IOException e) {
e.printStackTrace();
}finally{
//手动关闭流
try {
xmlWriter.close();
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
原文链接:https://www.f2er.com/xml/295505.html