码迷,mamicode.com
首页 > 编程语言 > 详细

读取xml文件中的配置参数实例_java - JAVA

时间:2019-12-24 23:54:59      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:默认值   tor   odoo   路径   rop   instance   style   frame   import   

文章来源:嗨学网 敏而好学论坛www.piaodoo.com 欢迎大家相互学习

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;

以上这篇读取xml文件中的配置参数实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持敏而好学论坛/嗨学网。

原文地址是:http://www.piaodoo.com/thread-13229-1-2.html 丝袜控www.txdah.com 131www.buzc.org学习之外可赏心悦目有助更好地学习!

读取xml文件中的配置参数实例_java - JAVA

标签:默认值   tor   odoo   路径   rop   instance   style   frame   import   

原文地址:https://www.cnblogs.com/txdah/p/12094073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!