java讀取xml配置參數(shù)代碼實(shí)例
這篇文章主要介紹了java讀取xml配置參數(shù)代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
paras.xml文件
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd"> <bean id="SysParam" class="com.wisoft.tysfrz.utils.SysParam"> <!--行政區(qū)劃代碼前臺(tái)顯示默認(rèn)值--> <property name="zoneCode" value="36"></property> <!--二代證讀卡器讀取照片存儲(chǔ)位置--> <property name="sfzpicpath" value="d:\\"></property> <!--保存身份證照片相對(duì)路徑--> <property name="photoRealPath" value="r/project/imgs/photo/"></property> </bean> </beans>
SysParam.java類文件
package com.wisoft.tysfrz.utils; /** * 系統(tǒng)配置參數(shù) * * @author ZHENWENCAN * @date 2017年10月9日 下午1:09:48 */ public class SysParam { //行政區(qū)劃代碼前臺(tái)顯示默認(rèn)值 private String zoneCode; //二代證讀卡器讀取照片存儲(chǔ)位置 private String sfzpicpath; //保存身份證照片相對(duì)路徑 private String photoRealPath; public String getZoneCode() { return zoneCode; } public void setZoneCode(String zoneCode) { this.zoneCode = zoneCode; } public String getSfzpicpath() { return sfzpicpath; } public void setSfzpicpath(String sfzpicpath) { this.sfzpicpath = sfzpicpath; } public String getPhotoRealPath() { return photoRealPath; } public void setPhotoRealPath(String photoRealPath) { this.photoRealPath = photoRealPath; } }
使用
private static ApplicationContext cpxac = new ClassPathXmlApplicationContext("tysfrz/spring/tysfrz_params.xml"); private static SysParam sysparam = (SysParam) cpxac.getBean("SysParam"); String photorealpath = sysparam.getPhotoRealPath();
需要引用包
import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext;
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Java中ConcurrentHashMap是如何實(shí)現(xiàn)線程安全
ConcurrentHashMap是一個(gè)哈希表,支持檢索的全并發(fā)和更新的高預(yù)期并發(fā)。本文主要介紹了Java中ConcurrentHashMap是如何實(shí)現(xiàn)線程安全,感興趣的可以了解一下2021-11-11java實(shí)現(xiàn)從網(wǎng)絡(luò)下載多個(gè)文件
這篇文章主要為大家詳細(xì)介紹了java實(shí)現(xiàn)從網(wǎng)絡(luò)下載多個(gè)文件,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2019-07-07詳解JAVA后端實(shí)現(xiàn)統(tǒng)一掃碼支付:微信篇
本篇文章主要介紹了詳解JAVA后端實(shí)現(xiàn)統(tǒng)一掃碼支付:微信篇,這里整理了詳細(xì)的代碼,有需要的小伙伴可以參考下。2017-01-01spring-core組件詳解——PropertyResolver屬性解決器
這篇文章主要介紹了spring-core組件詳解——PropertyResolver屬性解決器,需要的朋友可以參考下2016-05-05