您好,登錄后才能下訂單哦!
Spring中怎么將Resource作為屬性操作,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
一 配置文件
<?xml version="1.0" encoding="GBK"?><beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"> <bean id="test" class="org.crazyit.app.service.TestBean" p:res="classpath:book.xml"/></beans>
二 屬性文件
<?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.xmlclass path resource [book.xml]瘋狂Java講義李剛輕量級Java EE企業應用實戰李剛
看完上述內容,你們掌握Spring中怎么將Resource作為屬性操作的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。