转自: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文件

  1. <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;
  2. import org.apache.commons.configuration.Configuration;
  3. import org.apache.commons.configuration.ConfigurationException;
  4. import org.apache.commons.configuration.XMLConfiguration;
  5. public class xmlLoaderTest {
  6. public static void main(String[] args) throws ConfigurationException{
  7. Configuration config = new XMLConfiguration("com/styspace/config.xml");
  8. String name = config.getString("Account.name");
  9. System.out.println("name:" + name);
  10. }
  11. }
  12. </span>

需要注意的是config.getString(“Account.name”)中的参数是Account.name,这个参数是XPath格式的,而且不能包含xml中的根元素。

使用到的config.xml内容如下:

  1. <span style="font-family:Microsoft YaHei;font-size:12px;"><?xml version="1.0" encoding="gbk"?>
  2. <Accounts>
  3. <Account type="by0003">
  4. <code>100001</code>
  5. <pass>123</pass>
  6. <name>李四</name>
  7. <money>1000000.00</money>
  8. </Account>
  9. </Accounts></span>

2、读取properties文件

  1. <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;
  2. import org.apache.commons.configuration.Configuration;
  3. import org.apache.commons.configuration.ConfigurationException;
  4. import org.apache.commons.configuration.PropertiesConfiguration;
  5. public class peropertiesLoaderTest {
  6. public static void main(String[] args) throws ConfigurationException{
  7. Configuration config = new PropertiesConfiguration("com/styspace/config.properties");
  8. String name = config.getString("name");
  9. System.out.println("name:" + name);
  10. }
  11. }
  12. </span>

使用到的config.properties文件内容如下:

  1. <span style="font-family:Microsoft YaHei;font-size:12px;">threads.max=50threas.min=2
  2. timout=15.52
  3. interactive=true
  4. color=red
  5. speed=50
  6. name=Default User</span>

二、使用java.util.Properties读取

  1. <span style="font-family:Microsoft YaHei;font-size:12px;">package com.styspace;
  2. import java.io.IOException;
  3. import java.io.InputStream;
  4. import java.util.Properties;
  5. public class PropertiesTest {
  6. public static void main(String[] args){
  7. PropertiesTest pt = new PropertiesTest();
  8. try {
  9. pt.getProperties();
  10. } catch (IOException e) {
  11. // TODO Auto-generated catch block
  12. e.printStackTrace();
  13. }
  14. }
  15. private void getProperties() throws IOException {
  16. InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("com/styspace/config.properties");
  17. System.out.println("begin!!!");
  18. Properties properties = new Properties();
  19. try{
  20. properties.load(inputStream);
  21. }catch (IOException ioE){
  22. ioE.printStackTrace();
  23. }finally{
  24. inputStream.close();
  25. }
  26. System.out.println("name:"+properties.getProperty("name"));
  27. }
  28. }
  29. </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

  1. <span style="font-family:Microsoft YaHei;font-size:12px;">    BeanFactory factory = null; //声明
  2. ClassPathResource resource = new ClassPathResource("spring.xml");//类路径
  3. factory= new XmlBeanFactory(resource);
  4. FileSystemResource fileSystemResource = new FileSystemResource("D:\\Ncode\\mcode\\sday02\\src\\spring.xml");//文件路径
  5. factory= new XmlBeanFactory(fileSystemResource);
  6. //XmlBeanFactory(参数可以是resource或者fileSystemResource等
  7. //但是不能是 res 原因可以查看:文档Part III. Core Technologies 6. Resources
  8. //中6.2 The Resource interface 有关isOpen方法的说明);
  9. //InputStreamResource res = new InputStreamResource(new FileInputStream("D:\\Ncode\\mcode\\sday02\\src\\spring.xml"));//系统路径
  10. HelloService helloService = factory.getBean("helloServiceImpl", HelloServiceImpl.class);
  11. helloService.sayHello();</span>

2、使用上下文(Context)

上下文更加高级:提供文本信息解析工具,包括对国际化支持;提供载入文件资源的通用方法,如图片;可以向注册为监听器的bean发送事件。

在很少的情况下,使用BeanFactory。

  1. <span style="font-family:Microsoft YaHei;font-size:12px;">    //从文件系统
  2. ApplicationContext context = new FileSystemXmlApplicationContext("file:D:\\Ncode\\mcode\\sday02\\src\\spring.xml");
  3. //从类路径
  4. ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring.xml");
  5. HelloService helloService =  context.getBean("helloServiceImpl", HelloServiceImpl.class);
  6. helloService.sayHello();</span>

3、在web应用中使用

3.1、使用XmlWebApplicationContext

  1. XmlWebApplicationContext context = new XmlWebApplicationContext();
  2. //默认的路径/WEB-INF/applicationContext.xml
  3. //applicationContext.xml文件名称 可以任意起
  4. //重新设置路径
  5. //context.setConfigLocations(new String[] {"/WEB-INF/classes/applicationContext.xml"});
  6. //设置ServletContext上下下文为web应用程序的上下文
  7. context.setServletContext(getServletContext());
  8. //刷新
  9. context.refresh();
  10. //根据id名称获取
  11. HelloDao helloDao = context.getBean("helloDaoImpl", HelloDaoImpl.class);
  12. //执行helloDao对象的方法
  13. helloDao.sayHello();

3.2、使用WebApplicationContextUtils工具类

  1. //直接采用getWebApplicationContext(getServletContext()) 获取context对象
  2. WebApplicationContext  context=
  3. WebApplicationContextUtils.getWebApplicationContext(getServletContext());
  4. //context = WebApplicationContextUtils.getRequiredWebApplicationContext(getServletContext());
  5. System.out.println(context);
  6. HelloDao helloDao = context.getBean("helloDaoImpl", HelloDaoImpl.class);
  7. 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中读取配置文件的方法的更多相关文章

  1. Java中读取配置文件中的内容,并将其赋值给静态变量的方法

    应用场景 项目开发中某个功能需要抽取成方法写成一个工具类,提供给别人使用.写过工具类的人都知道,工具类中的方法一般都是静态方法,可以直接使用类名点方法名调用, 使用很方便,比如判断某个对象是否为空的方 ...

  2. java中读取配置文件ResourceBundle和Properties两种方式比较

    今天在开发的时候,需要把一些信息放到配置文件中,方便后续的修改,注意到用的是ResourceBundle读取配置文件的方式,记得之前也见过使用Properties的方式,就比较好奇这两种方式的区别,网 ...

  3. 在java中读取配置文件信息

    public class PropertyUtil { public static final Properties PROP = new Properties(); /** * 读取配置文件的内容( ...

  4. java中读取配置文件

    若是Javaweb项目,项目运行于tomcat或其他容器时,可以使用下面方式来获取文件的输入流 1.当属性文件放在src下面时 InputStream is = Thread.currentThrea ...

  5. JAVA中读取xls数据方法介绍

    用例编号(UI-0001) 用例名称({验证页面跳转|验证元素文本}-简要明确表述) 验证类型 是否执行 初始URL 初始元素xpath 目标元素xpath 目标元素属性 期望结果 UI-0001 验 ...

  6. java中读取配置文件中的数据

    1.先在项目中创建一个包(如:config),再创建一个配置文件(如:a.properties),添加配置信息如下:比如:name=kakaage=28 2.代码:import java.io.IOE ...

  7. java中读取配置文件内容,如读取.properties文件

    http://blog.csdn.net/u012255097/article/details/53122760

  8. Java中读取.properties配置文件的通用类

    由于Java中读取配置文件的代码比较固定,所以可以将读取配置文件的那部分功能单独作为一个类,以后可以复用.为了能够达到复用的目的,不能由配置文件中每一个属性生成一个函数去读取,我们需要一种通用的方法读 ...

  9. 面试突击75:SpringBoot 有几种读取配置文件的方法?

    Spring Boot 中读取配置文件有以下 5 种方法: 使用 @Value 读取配置文件. 使用 @ConfigurationProperties 读取配置文件. 使用 Environment 读 ...

随机推荐

  1. border的特殊用法

    大家很容易在一些网页上看到二级菜单上有一个小的三角形,这个小三角型 除了可以使用图片或者使用iconfont写出来,还可以使用border写出来 这边简单的为大家举一个例子,希望对大家有用吧! css ...

  2. 一个tomcat下,两个系统的jar包可以相互引用。

    将道路挖占管理系统(rems)从交通设备设施系统(tms)中剥离出去以后,在本地调试的时候是在同一个Tomcat下启动的,上传文件成功. 然后部署到西安以后,分成两个tomcat以后,发现rems上传 ...

  3. DES加解密 cbc模式 的简单讲解 && C++用openssl库来实现的注意事项

    DES cbc是基于数据块加密的.数据块的长度为8字节64bit.以数据块为单位循环加密,再拼接.每个数据块加密的秘钥一样,IV向量不同.第一个数据快所需的IV向量,需要我们提供,从第二个数据块开始, ...

  4. node中中间件body-parser的实现方式

    最近学习了Koa框架中用到了koa-bodyparser接收表单POST请求的参数,直接使用其API是很容易的,但却不知道其原生方法怎么实现的.故做些笔记 首先,是搭建了Koa的服务器不再赘述 其次, ...

  5. JavaScript学习笔记之call和apply

    前端的知识面太广了,想要记住所有知识点是不可能的,所以将这些学过的记录下来,随时都可以翻开来参考 1.call方法 调用一个对象的一个方法,call(this, arg1, arg2,argN);用来 ...

  6. expect简介和使用例子

    expect简介和使用例子   expect简介 expect是一款自动化的脚本解释型的工具. expect基于tcl脚本,expect脚本的运行需要tcl的支持. expect对一些需要交互输入的命 ...

  7. IIS转发需要的模块

    1.Application Request Routing https://www.iis.net/downloads/microsoft/application-request-routing  2 ...

  8. opencv的安装及填坑

    opencv的配置方式: https://blog.csdn.net/cocoaqin/article/details/78163171 输入Python时候报错: ERROR: ld.so: obj ...

  9. sql server2012 远程访问设置(转)

    转自:http://blog.csdn.net/xiadingling/article/details/8215282 步骤 打开SQL server2012,使用windows身份登录   登录后, ...

  10. Lua之math

    Lua之math函数: 转载请注明出处:http://www.cnblogs.com/jietian331/p/8032555.html abs 取绝对值 math.abs(-15) 15 acos ...