如何编写Java代码示例来读取XML配置文件中的参数?

2026-05-28 07:112阅读0评论SEO教程
  • 内容介绍
  • 文章标签
  • 相关推荐

本文共计579个文字,预计阅读时间需要3分钟。

如何编写Java代码示例来读取XML配置文件中的参数?

本文主要介绍了Java读取XML配置参数的代码实例。文中通过示例代码展示了如何读取XML文件,并获取其中的配置信息,内容详实但不过于复杂,适合家庭学习或工作参考。需要的伙伴可以参考以下内容:

paras.xml文件内容示例:

xml server.name localhost server.port 8080

XML版本信息:

xml

如何编写Java代码示例来读取XML配置文件中的参数?

这篇文章主要介绍了java读取xml配置参数代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

paras.xml文件

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="www.springframework.org/schema/beans" xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns:aop="www.springframework.org/schema/aop" xmlns:tx="www.springframework.org/schema/tx" xmlns:context="www.springframework.org/schema/context" xsi:schemaLocation=" www.springframework.org/schema/beans www.springframework.org/schema/beans/spring-beans-2.5.xsd www.springframework.org/schema/aop www.springframework.org/schema/aop/spring-aop-2.5.xsd www.springframework.org/schema/tx www.springframework.org/schema/tx/spring-tx-2.5.xsd www.springframework.org/schema/context 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;

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。

本文共计579个文字,预计阅读时间需要3分钟。

如何编写Java代码示例来读取XML配置文件中的参数?

本文主要介绍了Java读取XML配置参数的代码实例。文中通过示例代码展示了如何读取XML文件,并获取其中的配置信息,内容详实但不过于复杂,适合家庭学习或工作参考。需要的伙伴可以参考以下内容:

paras.xml文件内容示例:

xml server.name localhost server.port 8080

XML版本信息:

xml

如何编写Java代码示例来读取XML配置文件中的参数?

这篇文章主要介绍了java读取xml配置参数代码实例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下

paras.xml文件

<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="www.springframework.org/schema/beans" xmlns:xsi="www.w3.org/2001/XMLSchema-instance" xmlns:aop="www.springframework.org/schema/aop" xmlns:tx="www.springframework.org/schema/tx" xmlns:context="www.springframework.org/schema/context" xsi:schemaLocation=" www.springframework.org/schema/beans www.springframework.org/schema/beans/spring-beans-2.5.xsd www.springframework.org/schema/aop www.springframework.org/schema/aop/spring-aop-2.5.xsd www.springframework.org/schema/tx www.springframework.org/schema/tx/spring-tx-2.5.xsd www.springframework.org/schema/context 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;

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持易盾网络。