Flask接口签名sign原理与实例代码浅析
243
2022-12-17
Spring实战之使用Resource作为属性操作示例
本文实例讲述了Spring实战之使用Resource作为属性操作。分享给大家供大家参考,具体如下:
一 配置文件
xmlns="http://sprinhttp://gframework.org/schema/beans" xmlns:p="http://springframework.org/schema/p" xsi:schemaLocation="http://springframework.org/schema/beans http://springframework.org/schema/beans/spring-beans-4.0.xsd"> p:res="classpath:book.xml"/>
xmlns="http://sprinhttp://gframework.org/schema/beans"
xmlns:p="http://springframework.org/schema/p"
xsi:schemaLocation="http://springframework.org/schema/beans
http://springframework.org/schema/beans/spring-beans-4.0.xsd">
p:res="classpath:book.xml"/>
p:res="classpath:book.xml"/>
二 属性文件
<?xml version="1.0" encoding="GBK"?>
<计算机书籍列表>
<书>
<书名>疯狂java讲义书名>
书>
<书>
<书名>轻量级Java EE企业应用实战书名>
书>
计算机书籍列表>
三 Bean
package org.crazyit.app.service;
import org.springframework.core.io.Resource;
import org.dom4j.io.*;
import org.dom4j.*;
import java.util.*;
public class TestBean
{
private Resource res;
// res的setter方法
public void setRes(Resource res)
{
this.res = res;
}
public void parse()throws Exception
{
// 获取该资源的简单信息
System.out.println(res.getFilename());
System.out.println(res.getDescription());
// 创建基于SAX的dom4j的解析器
SAXReader reader = new SAXReader();
Document doc = reader.read(res.getFile());
// 获取根元素
Element el = doc.getRootElement();
List l = el.elements();
// 遍历根元素的全部子元素
for (Iterator it = l.iterator();it.hasNext() ; )
{
// 每个节点都是<书>节点
Element book = (Element)it.next();
List ll = book.elements();
// 遍历<书>节点的全部子节点
for (Iterator it2 = ll.iterator();it2.hasNext() ; )
{
Element eee = (Element)it2.next();
System.out.println(eee.getText());
}
}
}
}
四 测试类
package lee;
import org.springframework.context.*;
import org.springframework.context.support.*;
import org.springframework.core.io.*;
import org.crazyit.app.service.*;
public class SpringTest
{
public static void main(String[] args) throws Exception
{
ApplicationContext ctx = new
ClassPathXmlApplicationContext("beans.xml");
TestBean tb = ctx.getBean("test" , TestBean.class);
tb.parse();
}
}
五 测试结果
book.xml
class pathxnqQh resource [book.xml]
疯狂Java讲义
李刚
轻量级Java EE企业应用实战
李刚
更多关于java相关内容感兴趣的读者可查看本站专题:《Spring框架入门与进阶教程》、《Java数据结构与算法教程》、《Java操作DOM节点技巧总结》、《Java文件与目录操作技巧汇总》和《Java缓存操作技巧汇总》
希望本文所述对大家java程序设计有所帮助。
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~