java中读取配置文件的方法
转自:http://blog.csdn.net/stypace/article/details/38414871
一、使用org.apache.commons.configuration
需要使用的是jar包:commons-collections-3.2.1.jar、commons-configuration-1.10.jar、commons-lang-2.6.jar和commons-logging-1.2.jar。
可以读取的配置文件:xml和properties
1、读取xml文件
- <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;
- import org.apache.commons.configuration.Configuration;
- import org.apache.commons.configuration.ConfigurationException;
- import org.apache.commons.configuration.XMLConfiguration;
- public class xmlLoaderTest {
- public static void main(String[] args) throws ConfigurationException{
- Configuration config = new XMLConfiguration("com/styspace/config.xml");
- String name = config.getString("Account.name");
- System.out.println("name:" + name);
- }
- }
- </span>
需要注意的是config.getString(“Account.name”)中的参数是Account.name,这个参数是XPath格式的,而且不能包含xml中的根元素。
使用到的config.xml内容如下:
- <span style="font-family:Microsoft YaHei;font-size:12px;"><?xml version="1.0" encoding="gbk"?>
- <Accounts>
- <Account type="by0003">
- <code>100001</code>
- <pass>123</pass>
- <name>李四</name>
- <money>1000000.00</money>
- </Account>
- </Accounts></span>
2、读取properties文件
- <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;
- import org.apache.commons.configuration.Configuration;
- import org.apache.commons.configuration.ConfigurationException;
- import org.apache.commons.configuration.PropertiesConfiguration;
- public class peropertiesLoaderTest {
- public static void main(String[] args) throws ConfigurationException{
- Configuration config = new PropertiesConfiguration("com/styspace/config.properties");
- String name = config.getString("name");
- System.out.println("name:" + name);
- }
- }
- </span>
使用到的config.properties文件内容如下:
- <span style="font-family:Microsoft YaHei;font-size:12px;">threads.max=50threas.min=2
- timout=15.52
- interactive=true
- color=red
- speed=50
- name=Default User</span>
二、使用java.util.Properties读取
- <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;
- import java.io.IOException;
- import java.io.InputStream;
- import java.util.Properties;
- public class PropertiesTest {
- public static void main(String[] args){
- PropertiesTest pt = new PropertiesTest();
- try {
- pt.getProperties();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- private void getProperties() throws IOException {
- InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("com/styspace/config.properties");
- System.out.println("begin!!!");
- Properties properties = new Properties();
- try{
- properties.load(inputStream);
- }catch (IOException ioE){
- ioE.printStackTrace();
- }finally{
- inputStream.close();
- }
- System.out.println("name:"+properties.getProperty("name"));
- }
- }
- </span>
需要注意的是hetClassLoader().getResourceAsStream()的参数是项目根目录下的路径,尽管config.properties是该该类文件在相同的目录下,但是不能写成getClassLoader().getResourceAsStream("config.properties"),这样程序会报错,得到的InputStream是null值。
ClassLoader()和URLClassLoader()区别:ClassLoader()只能查找src目录下的文件,而URLClassLoader()则能查找任意目录下的文件。
三、spring中配置文件的读取
1、ClassPathXmlApplicationContext:从类路径中加载。
2、FileSystemXmlApplicationContext:从文件系统加载。
3、XmlWebApplicationContext:从web系统中加载。
1、使用bean工厂获取bean
- <span style="font-family:Microsoft YaHei;font-size:12px;"> BeanFactory factory = null; //声明
- ClassPathResource resource = new ClassPathResource("spring.xml");//类路径
- factory= new XmlBeanFactory(resource);
- FileSystemResource fileSystemResource = new FileSystemResource("D:\\Ncode\\mcode\\sday02\\src\\spring.xml");//文件路径
- factory= new XmlBeanFactory(fileSystemResource);
- //XmlBeanFactory(参数可以是resource或者fileSystemResource等
- //但是不能是 res 原因可以查看:文档Part III. Core Technologies 6. Resources
- //中6.2 The Resource interface 有关isOpen方法的说明);
- //InputStreamResource res = new InputStreamResource(new FileInputStream("D:\\Ncode\\mcode\\sday02\\src\\spring.xml"));//系统路径
- HelloService helloService = factory.getBean("helloServiceImpl", HelloServiceImpl.class);
- helloService.sayHello();</span>
2、使用上下文(Context)
上下文更加高级:提供文本信息解析工具,包括对国际化支持;提供载入文件资源的通用方法,如图片;可以向注册为监听器的bean发送事件。
在很少的情况下,使用BeanFactory。
- <span style="font-family:Microsoft YaHei;font-size:12px;"> //从文件系统
- ApplicationContext context = new FileSystemXmlApplicationContext("file:D:\\Ncode\\mcode\\sday02\\src\\spring.xml");
- //从类路径
- ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring.xml");
- HelloService helloService = context.getBean("helloServiceImpl", HelloServiceImpl.class);
- helloService.sayHello();</span>
3、在web应用中使用
3.1、使用XmlWebApplicationContext
- XmlWebApplicationContext context = new XmlWebApplicationContext();
- //默认的路径/WEB-INF/applicationContext.xml
- //applicationContext.xml文件名称 可以任意起
- //重新设置路径
- //context.setConfigLocations(new String[] {"/WEB-INF/classes/applicationContext.xml"});
- //设置ServletContext上下下文为web应用程序的上下文
- context.setServletContext(getServletContext());
- //刷新
- context.refresh();
- //根据id名称获取
- HelloDao helloDao = context.getBean("helloDaoImpl", HelloDaoImpl.class);
- //执行helloDao对象的方法
- helloDao.sayHello();
3.2、使用WebApplicationContextUtils工具类
- //直接采用getWebApplicationContext(getServletContext()) 获取context对象
- WebApplicationContext context=
- WebApplicationContextUtils.getWebApplicationContext(getServletContext());
- //context = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
- System.out.println(context);
- HelloDao helloDao = context.getBean("helloDaoImpl", HelloDaoImpl.class);
- helloDao.sayHello()
两者的区别是:
1、当采用getWebApplicationContext(getServletContext())获取context对象的时候,输出的context对象为null 所以在使用
context.getBean("helloDaoImpl", HelloDaoImpl.class);会出现空指针的异常
2、当采用getRequiredWebApplicationContext(getServletContext());获取context对象的时候 会出现如下bug
java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered
java中读取配置文件的方法的更多相关文章
- Java中读取配置文件中的内容,并将其赋值给静态变量的方法
应用场景 项目开发中某个功能需要抽取成方法写成一个工具类,提供给别人使用.写过工具类的人都知道,工具类中的方法一般都是静态方法,可以直接使用类名点方法名调用, 使用很方便,比如判断某个对象是否为空的方 ...
- java中读取配置文件ResourceBundle和Properties两种方式比较
今天在开发的时候,需要把一些信息放到配置文件中,方便后续的修改,注意到用的是ResourceBundle读取配置文件的方式,记得之前也见过使用Properties的方式,就比较好奇这两种方式的区别,网 ...
- 在java中读取配置文件信息
public class PropertyUtil { public static final Properties PROP = new Properties(); /** * 读取配置文件的内容( ...
- java中读取配置文件
若是Javaweb项目,项目运行于tomcat或其他容器时,可以使用下面方式来获取文件的输入流 1.当属性文件放在src下面时 InputStream is = Thread.currentThrea ...
- JAVA中读取xls数据方法介绍
用例编号(UI-0001) 用例名称({验证页面跳转|验证元素文本}-简要明确表述) 验证类型 是否执行 初始URL 初始元素xpath 目标元素xpath 目标元素属性 期望结果 UI-0001 验 ...
- java中读取配置文件中的数据
1.先在项目中创建一个包(如:config),再创建一个配置文件(如:a.properties),添加配置信息如下:比如:name=kakaage=28 2.代码:import java.io.IOE ...
- java中读取配置文件内容,如读取.properties文件
http://blog.csdn.net/u012255097/article/details/53122760
- Java中读取.properties配置文件的通用类
由于Java中读取配置文件的代码比较固定,所以可以将读取配置文件的那部分功能单独作为一个类,以后可以复用.为了能够达到复用的目的,不能由配置文件中每一个属性生成一个函数去读取,我们需要一种通用的方法读 ...
- 面试突击75:SpringBoot 有几种读取配置文件的方法?
Spring Boot 中读取配置文件有以下 5 种方法: 使用 @Value 读取配置文件. 使用 @ConfigurationProperties 读取配置文件. 使用 Environment 读 ...
随机推荐
- 49.CSS--- 特殊css3效果展示
1.设置多行文本超出显示省略号<div class="caption"> <p>显示超过两行就显示省略号,其余隐藏,隐藏不了的情况下给这个模块添加一个高度和 ...
- 总结docker常用命令
docker 1docker pull 镜像 2docker ps -a 查看所有容器docker image 查看镜像 3docker rm 容器id 删除容器 docker rm 一次可以指定多个 ...
- <1>lua编译环境 数据类型和局部变量
1.编译环境 http://www.lua.org/download.html下载 解压后 bin目录中lua.exe运行 luac.exe编译成lua字节码 2.基本数据类型 整数,小数,布尔值 ...
- 《大话设计模式》c++实现 工厂模式
工厂模式 工厂模式(Factory Pattern)是 Java 中最常用的设计模式之一.这种类型的设计模式属于创建型模式,它提供了一种创建对象的最佳方式. 在工厂模式中,我们在创建对象时不会对客户端 ...
- Day11 多进程与多线程编程
一.进程与线程 1.什么是进程(process)? An executing instance of a program is called a process. Each process provi ...
- C# Activator和new的区别
1.你需要动态的创建一个实例模型的时候,就用Activator.CreateInstance(Type type);如果是明确的知道要创建哪个实例的模型,就可以用 new Class1()了. T t ...
- GCD(Swift)
1.取消过去的接口 说起 GCD, 大家肯定回想起类似 dispatch_async 这样的语法. GCD 的这个语法模式无论是和 Objc 还是 Swift 的整体风格都不太打掉. 所以 Swift ...
- Spring NoSuchBeanDefinitionException
转http://www.baeldung.com/spring-nosuchbeandefinitionexception 1. Overview In this article, we are di ...
- 20165305 苏振龙《Java程序设计》第四周学习总结
第五章 继承: 面向对象中,为避免多个类间重复定义共同行为.(简单说就是将相同的程序代码提升为父类.) 特点: 这里接触到了新的关键词,extends,在java语言中用estends来继承父类的行为 ...
- linux常用命令:cd 命令
Linux cd 命令可以说是Linux中最基本的命令语句,其他的命令语句要进行操作,都是建立在使用 cd 命令上的.所以,学习Linux 常用命令,首先就要学好 cd 命令的使用方法技巧. 1. 命 ...