java 讀取xml的方法

2021-08-30 11:46:58 字數 967 閱讀 1200

1、建立要讀取的xml文件:

logfile

2、建乙個方法來讀取xml文件:

private void readxmltest(string infile) throws exception catch (parserconfigurationexception pce) 

document doc = null;

try catch (domexception dom) catch (ioexception ioe)

// 下面是解析xml的全過程,

// 比較簡單,先取根元素"processor"

element root = doc.getdocumentelement();

nodelist log = root.getelementsbytagname("log-file");

element e = (element) log.item(0);

text t = (text) e.getfirstchild();

system.out.println("log-file:" + t.getnodevalue());

// 取tasks元素列表

nodelist tasks = root.getelementsbytagname("tasks");

element task = (element) tasks.item(0);

nodelist tasklist = task.getelementsbytagname("task");

for (int i = 0; i < tasklist.getlength(); i++)

}

3、建立乙個main函式講xml文件裡的內容輸出到控制台

public static void main(string args) throws exception

Xml的讀取方法

c 中可以用xmldocument類操作xml檔案 xml檔案格式較多,一種為較複雜的 在 中新增元素資料的,一種為在 中新增元素資料的 xml version 1.0 encoding utf 8 root person name wangyao age 25 age person person ...

JAVA 讀取XML檔案

file sourcefile new file path documentbuilde ctory factory documentbuilde ctory.newinstance documentbuilder builder factory.newdocumentbuilder documen...

VC讀取XML文件的方法

二 文件物件模型 dom dom是document object model 文件物件模型 的簡稱,是對web文件進行應用開發 程式設計的應用程式介面 api 作為w3c公布的一種跨平台 與語言無關的介面規範,dom提供了在不同環境和應用中的標準程式介面,可以用任何語言實現。dom採用物件模型和一系...