dom4j寫入xml檔案示例

2021-05-26 16:14:58 字數 742 閱讀 1058

public class writexml 

fileoutputstream fos = new fileoutputstream("student.xml");

outputstreamwriter osw = new outputstreamwriter(fos,"gbk");

outputformat of = new outputformat();

of.setencoding("gbk");

of.setindent(true);

of.setindent("    ");

of.setnewlines(true);

xmlwriter writer = new xmlwriter(osw, of);

writer.write(document);

writer.close();

}}

下面是生成的xml

<?xml version="1.0" encoding="gbk"?>

001za

[email protected]男19

50 002

[email protected]男20

51 003

[email protected]男21

52 004

[email protected]男22

53 005

[email protected]男23

54

dom4j 使用dom4j生成xml

使用org.dom4j.element 建立xml 生成service.xml檔案 param tran 交易物件 param filepath 資料夾路徑 public static void exportservicexml listtranlist,string filepath servic...

xml檔案解析 DOM4J

讀取並解析xml文件 讀寫xml文件主要依賴於org.dom4j.io包,其中 提供domreader 和saxreader 兩類不同方式,而呼叫方式是一樣的。這就是依靠介面的好處。從檔案讀取 xml,輸入檔名,返回 xml文件 publicdocument read string filename...

dom4j解析xml檔案

一 利用dom4j建立乙個內容如下的xml檔案sqlmapconfig.xml 步驟 1.建立乙個輸出流,指定建立的sqlmapconfig.xml檔案的位置 outputstream outputstream os new fileoutputstream d sqlmapconfig.xml 2...