java解析xml配置文件的一个例子

功能描述:根据指定的元素和属性,得到相关值。适用于Java项目中读取xml形式的配置文件。静态方法可以直接用ReadConfigXml.ReadConfig("httpserver", "url");调用。

<root>
<httpserver url="http://127.0.0.1:8080/Demo/Test.do" name= "某某接口"></httpserver>
</root>

xml例子 

package com.util.config;

import java.io.File;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import org.dom4j.Attribute;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

public class ReadConfigXml {
	public static String getClassesPath() {
		String classesPath = System.getProperty("user.dir");
		File file= new File(classesPath);
		return file.getAbsolutePath();
	}

	public static String ReadConfig(String key, String att) {
		String keyvalue = "";
		Map<String, Object> myattributes = new HashMap<>();
		SAXReader reader = new SAXReader();
		Document document = null;
		try {
			File file = new File(getClassesPath() + File.separator + "config" + File.separator + "config.xml");
			document = reader.read(file);
		} catch (DocumentException e) {
			e.printStackTrace();
		}
		Element rootElement = document.getRootElement();
		Element distElement = rootElement.element(key);
		if (distElement != null) {
			List<Attribute> attributes = distElement.attributes();
			for (Attribute attribute : attributes) {
				myattributes.put(attribute.getName(), attribute.getValue());
			}
			if (myattributes.containsKey(att)) {
				keyvalue = myattributes.get(att).toString();
			} else {
				System.out.println("config.xml中" + key + "不存在属性" + att);
			}
		}
		if (distElement == null) {
			System.out.println("config.xml不存在" + key);
		}
		return keyvalue;
	}
}

代码。 

 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

我一时想不起

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值