首页 > 软件下载 > 办公软件

jdomjar 免费版

2024-07-18

资源介绍

jdom jar:免费的jdom.jar包,非常好用的包,错过了将是你最大的损失。本Jive(Jdon版)可在Jbuilder 7直接打开。建议你用Jbuilder7打开后,编辑相应设置(JDK1.4)。本软件在linux+jdk1.4+tomcat 4以上环境运行正常,中文显示正常。

【jdom.jar用法】


依赖于jar包: dom4j.jar 和 jaxen-1.1.1.jar
Xml代码
<?xml version="1.0" encoding="UTF-8"?>
<list>
<index>D:\\index\\IndexDB</index>
</list>

【Java代码】

package com.wlh.dom4j.test;

import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Node;
import org.dom4j.io.SAXReader;

public class TestReader {
public static void main(String args[]){
String filePath="index.xml";
try {
//如果配置文件是在Src下,则采用如下方式得到Document
Document document=new SAXReader().read(Thread.currentThread().getContextClassLoader().getResourceAsStream(filePath));
//如果配置文件是在本地文件系统,则采用如下方式得到Document
//Document document=new SAXReader().read("D:\\index.xml");
if (document == null) {
System.out.println(filePath+"没找到");
}else{
Node node=document.selectSingleNode("//list/index");
String indexfile=node.getText();
System.out.println(indexfile);
}
} catch (DocumentException e) {
e.printStackTrace();

}
}
}

【jdom读取xml文件】

依赖于jar包: jdom.jar
得到URL的方式:Thread.currentThread().getContextClassLoader().getResource(filePath)
Java代码
package com.wlh.dom4j.test;

import java.io.IOException;
import java.util.List;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.JDOMException;
import org.jdom.input.SAXBuilder;
public class TestJdomReader {
public static void main(String args[]) {
String filePath = "zxt_index.xml";
String indexPath="";
SAXBuilder builder = new SAXBuilder(false);
try {
Document doc = builder.build(Thread.currentThread().getContextClassLoader().getResource(filePath));
Element books = doc.getRootElement();
Element rootElement= books.getChild("list");
Element index=rootElement.getChild("index");
indexPath=index.getText();
System.out.println(indexPath);
} catch (JDOMException e) {
e.printStackTrace();
} catch (IOException e) {image.png
展开全部

版权声明

1 本站所有资源(含游戏)均是软件作者、开发商投稿,任何涉及商业盈利目的均不得使用,否则产生的一切后果将由您自己承担!

2 本站资源下载后不得用于商业用途,所有资源请在下载后24小时内删除。

3 若有关在线投稿、无法下载等问题,请与本站客服人员联系。

4 如侵犯了您的版权、商标等,请立刻联系我们并具体说明情况后,本站将尽快处理删除,联系QQ:2499894784

最近更新

热门排行

最需网客户端 软件问题一手掌握

去 App Store 免费下载 iOS 客户端