zoukankan      html  css  js  c++  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;

  • 相关阅读:
    Finalize,Dispose,SuppressFinalize
    防火防盗防微软,Firefox发布插件自动检测服务
    Nginx的Rewrite设置及示例
    Linux游戏开发包 ClanLib 2.1.0 发布
    HTTP协议详解(真的很经典)
    Linux on POWER:发行版迁移和二进制兼容性考虑事项
    映射网络驱动器VBS脚本
    [笔记] 使用 opcache 优化生产环境PHP
    2020最新版MySQL数据库面试题(三)
    请注意,面试中有这7个行为肯定会被拒绝!
  • 原文地址:https://www.cnblogs.com/jassy/p/7641484.html
Copyright © 2011-2022 走看看