Spring中怎么將Resource作為屬性操作,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
創(chuàng)新互聯(lián)自成立以來,一直致力于為企業(yè)提供從網(wǎng)站策劃、網(wǎng)站設計、做網(wǎng)站、成都網(wǎng)站制作、電子商務、網(wǎng)站推廣、網(wǎng)站優(yōu)化到為企業(yè)提供個性化軟件開發(fā)等基于互聯(lián)網(wǎng)的全面整合營銷服務。公司擁有豐富的網(wǎng)站建設和互聯(lián)網(wǎng)應用系統(tǒng)開發(fā)管理經(jīng)驗、成熟的應用系統(tǒng)解決方案、優(yōu)秀的網(wǎng)站開發(fā)工程師團隊及專業(yè)的網(wǎng)站設計師團隊。一 配置文件
<?xml version="1.0" encoding="GBK"?><beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="/tupian/20230522/" xmlns:p="http://www.springframework.org/schema/p" xsi:schemaLocation="/tupian/20230522/ /tupian/20230522//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企業(yè)應用實戰(zhàn)</書名> <作者>李剛</作者> </書></計算機書籍列表>
三 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()); // 創(chuàng)建基于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() ; ) { // 每個節(jié)點都是<書>節(jié)點 Element book = (Element)it.next(); List ll = book.elements(); // 遍歷<書>節(jié)點的全部子節(jié)點 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(); }}
五 測試結(jié)果
book.xmlclass path resource [book.xml]瘋狂Java講義李剛輕量級Java EE企業(yè)應用實戰(zhàn)李剛
看完上述內(nèi)容,你們掌握Spring中怎么將Resource作為屬性操作的方法了嗎?如果還想學到更多技能或想了解更多相關內(nèi)容,歡迎關注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
當前名稱:Spring中怎么將Resource作為屬性操作-創(chuàng)新互聯(lián)
本文路徑:http://m.rwnh.cn/article30/djidpo.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供標簽優(yōu)化、做網(wǎng)站、網(wǎng)站改版、網(wǎng)站營銷、建站公司、微信公眾號
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容