溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Spring中怎么將Resource作為屬性操作

發(fā)布時(shí)間:2021-07-22 15:56:04 來源:億速云 閱讀:136 作者:Leah 欄目:編程語言

Spring中怎么將Resource作為屬性操作,相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

一 配置文件

<?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"?><計(jì)算機(jī)書籍列表>   <書>      <書名>瘋狂Java講義</書名>      <作者>李剛</作者>   </書>   <書>      <書名>輕量級(jí)Java EE企業(yè)應(yīng)用實(shí)戰(zhàn)</書名>      <作者>李剛</作者>   </書></計(jì)算機(jī)書籍列表>

三 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  {    // 獲取該資源的簡(jiǎn)單信息    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() ; )    {      // 每個(gè)節(jié)點(diǎn)都是<書>節(jié)點(diǎn)      Element book = (Element)it.next();      List ll = book.elements();      // 遍歷<書>節(jié)點(diǎn)的全部子節(jié)點(diǎn)      for (Iterator it2 = ll.iterator();it2.hasNext() ; )      {        Element eee = (Element)it2.next();        System.out.println(eee.getText());      }    }  }}

四 測(cè)試類

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();  }}

五 測(cè)試結(jié)果

book.xmlclass path resource [book.xml]瘋狂Java講義李剛輕量級(jí)Java EE企業(yè)應(yīng)用實(shí)戰(zhàn)李剛

看完上述內(nèi)容,你們掌握Spring中怎么將Resource作為屬性操作的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI