一、如果只是读取
新建一个 xml 文件,需要满足Spring格式:
中国四川省绵阳市
创建一个类,类的路径与上面xml文件中的class一致:
package com.examplepublic class Config { public static String address; public void setAddress(String addr) { address = addr; }}
然后将 config.xml 引入到Spring主配置文件中:
测试:
System.out.println(Config.address);
二、读写
以config.xml为例:
中国四川省绵阳市
这时需要用到 ,代码如下:
/* 引入项import org.jdom2.Document;import org.jdom2.Element;import org.jdom2.input.SAXBuilder;import org.springframework.core.io.ClassPathResource;*/ private String readServerConfig(String configFileName) throws Exception { ClassPathResource resource = new ClassPathResource(configFileName); Document doc = new SAXBuilder().build(resource.getFile()); Element root = doc.getRootElement(); Element element = root.getChild("Address"); return element.getText(); } private void writeServerConfig(String configFileName) throws Exception { ClassPathResource resource = new ClassPathResource(configFileName); Document doc = new SAXBuilder().build(resource.getFile()); Element root = doc.getRootElement(); Element element = root.getChild("Address"); element.setText("中国四川省成都市"); root.setContent(element); }