java读取xml配置参数代码实例
这篇文章主要介绍了java读取xml配置参数代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
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"> <!--行政区划代码前台显示默认值--> <property name="zoneCode" value="36"></property> <!--二代证读卡器读取照片存储位置--> <property name="sfzpicpath" value="d:\\"></property> <!--保存身份证照片相对路径--> <property name="photoRealPath" value="r/project/imgs/photo/"></property> </bean> </beans>
SysParam.java类文件
package com.wisoft.tysfrz.utils; /** * 系统配置参数 * * @author ZHENWENCAN * @date 2017年10月9日 下午1:09:48 */ public class SysParam { //行政区划代码前台显示默认值 private String zoneCode; //二代证读卡器读取照片存储位置 private String sfzpicpath; //保存身份证照片相对路径 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;
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。
上一篇:如何实现Java线程安全问题
栏 目:Java
本文标题:java读取xml配置参数代码实例
本文地址:https://www.xiuzhanwang.com/a1/Java/8834.html
您可能感兴趣的文章
- 01-10Java实现动态模拟时钟
- 01-10利用Java实现复制Excel工作表功能
- 01-10JavaWeb实现邮件发送功能
- 01-10java基于poi导出excel透视表代码实例
- 01-10Java实现动态数字时钟
- 01-10基于Java验证jwt token代码实例
- 01-10java实现液晶数字字体显示当前时间
- 01-10浅谈Java中真的只有值传递么
- 01-10Java动态显示当前日期和时间
- 01-10如何解决线程太多导致java socket连接池出现的问题
阅读排行
本栏相关
- 01-10Java实现动态模拟时钟
- 01-10Springboot中@Value的使用详解
- 01-10JavaWeb实现邮件发送功能
- 01-10利用Java实现复制Excel工作表功能
- 01-10Java实现动态数字时钟
- 01-10java基于poi导出excel透视表代码实例
- 01-10java实现液晶数字字体显示当前时间
- 01-10基于Java验证jwt token代码实例
- 01-10Java动态显示当前日期和时间
- 01-10浅谈Java中真的只有值传递么
随机阅读
- 01-10SublimeText编译C开发环境设置
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 01-11ajax实现页面的局部加载
- 04-02jquery与jsp,用jquery
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10delphi制作wav文件的方法
- 08-05dedecms(织梦)副栏目数量限制代码修改
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 01-10C#中split用法实例总结