利用反射读取xml配置文件的基本步骤:

1.导入dom4j的jar的包,
2.导入之后,在具体读取文件的类里面进行具体读取
(1)实例化dom4j
SAXReader reader = new SAXReader
(2)用输入流进行读取,.得到类.得到类加载器.读取方法()。
InputStream in = getClass().getClassLoader()
.getResourceAsStream(“smartmvc.xml”)
(3)用Document接收.read()方法
Document doc = reader.read(in);
(4)出现异常可以try/catch,并且用最大异常,Exception
(5)开始读取,先找到根元素,
Element root = doc.getRootElement();
在找到所有的子元素
List elements = root.element();
(6)遍历所有子元素
for(Element ele : elements)
String className = ele.attributeValue
(“class”)
(7)打桩尝试是否成功。
System.out.println(“className:” + className)

Linux系统代码截图:利用反射读取xml配置文件的基本步骤:_第1张图片

你可能感兴趣的:(技术)