找軟件用軟件,就到華軍軟件園! 軟件發(fā)布

您好,如有軟件收錄需求,請將軟件打包,并附上軟件名稱、軟件介紹、軟件相關(guān)截圖、軟件icon、軟著、營業(yè)執(zhí)照(個人沒有營業(yè)執(zhí)照請?zhí)峁?yīng)的開發(fā)者身份證正反面以及手持身份證本人照片),發(fā)送至郵箱 https://user.onlinedown.net/login

收起>>

發(fā)送至郵箱:news@onlinedown.net

收起>>

所在位置: 首頁 — PC軟件 — 編程軟件 — 編程控件  —  jdom jar
jdom jar

jdom jar  PC版

二維碼
  • 軟件授權(quán): 免費軟件
  • 軟件大?。? 0.14MB
  • 軟件評分:
  • 軟件類型: 國產(chǎn)軟件
  • 更新時間: 2024-12-30
  • 應(yīng)用平臺: Win All
  • 軟件語言: 簡體中文
  • 版      本: PC版

下載服務(wù)協(xié)議見頁面底部

軟件介紹 相關(guān)專題 常見問題 下載地址

基本簡介
jdom jar段首LOGO
不用是你的損失!這么好用的包

本Jive(Jdon版)可在Jbuilder 7直接打開。

建議你用Jbuilder7打開后,編輯相應(yīng)設(shè)置(JDK1.4)

本軟件在linux+jdk1.4+tomcat 4以上環(huán)境運行正常,中文顯示正常。

用法:

依賴于jar包: dom4j.jar 和 jaxen-1.1.1.jar 
Xml代碼  
1. <?xml version="1.0" encoding="UTF-8"?>  
2. <list>  
3. <index>D:indexIndexDB</index>  
4. </list>  

Java代碼  
1. package com.wlh.dom4j.test;   
2.   
3. import org.dom4j.Document;   
4. import org.dom4j.DocumentException;   
5. import org.dom4j.Node;   
6. import org.dom4j.io.SAXReader;   
7.   
8. public class TestReader {   
9.     public static void main(String args[]){   
10.         String filePath="index.xml";   
11.         try {   
12.             //如果配置文件是在Src下,則采用如下方式得到Document   
13.             Document document=new SAXReader().read(Thread.currentThread().getContextClassLoader().getResourceAsStream(filePath));   
14.             //如果配置文件是在本地文件系統(tǒng),則采用如下方式得到Document         
15.             //Document document=new SAXReader().read("D:index.xml");   
16.             if (document == null) {      
17.                 System.out.println(filePath+"沒找到");      
18.             }else{     
19.             Node node=document.selectSingleNode("//list/index");   
20.             String indexfile=node.getText();   
21.             System.out.println(indexfile);   
22.            }   
23.             } catch (DocumentException e) {   
24.             e.printStackTrace();   
25.                
26.         }      
27.     }   
28. }  

jdom讀取xml文件: 

依賴于jar包: jdom.jar 
得到URL的方式:Thread.currentThread().getContextClassLoader().getResource(filePath) 
Java代碼  
1. package com.wlh.dom4j.test;   
2.   
3. import java.io.IOException;   
4. import java.util.List;   
5.   
6. import org.jdom.Document;   
7. import org.jdom.Element;   
8. import org.jdom.JDOMException;   
9. import org.jdom.input.SAXBuilder;   
10.   
11. public class TestJdomReader {   
12.     public static void main(String args[]) {   
13.         String filePath = "zxt_index.xml";   
14.         String indexPath="";   
15.         SAXBuilder builder = new SAXBuilder(false);   
16.         try {   
17.             Document doc = builder.build(Thread.currentThread().getContextClassLoader().getResource(filePath));   
18.             Element books = doc.getRootElement();   
19.              Element rootElement= books.getChild("list");   
20.              Element index=rootElement.getChild("index");   
21.              indexPath=index.getText();   
22.              System.out.println(indexPath);   
23.         } catch (JDOMException e) {   
24.             e.printStackTrace();   
25.         } catch (IOException e) {   
26.             e.printStackTrace();   
27.         }   
28.   
29.     }   
30. }  

下載地址 分享軟件/應(yīng)用

使用WindSoul軟件管家下載地址:安全,快速

電信安全下載 網(wǎng)通安全下載 移動安全下載 聯(lián)通安全下載

部分文件為zip、rar等壓縮格式,請下載 360壓縮 進(jìn)行壓縮!

常見問題