- 浏览: 92319 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (66)
- log4j (3)
- hibernate (6)
- oracle (7)
- axis (1)
- tomcat (9)
- web (10)
- JS (7)
- Java web (12)
- jsp (5)
- myeclipse (2)
- struts1 (1)
- java (11)
- jbmp4 (2)
- 连接池 spring (1)
- java JBPM6 (1)
- websewvice (3)
- java spring AOP (1)
- JS,ajax (1)
- activiti5 (2)
- Java web soapUi (2)
- jstl (1)
- applet (1)
- lintCode刷题开始 (0)
- LintCode刷题 (1)
- kindeditor (2)
最新评论
一、使用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文件
[java] view plaincopy
<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内容如下:
[html] view plaincopy
<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文件
[java] view plaincopy
<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文件内容如下:
[plain] view plaincopy
<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读取
[java] view plaincopy
<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
[java] view plaincopy
<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。
[java] view plaincopy
<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
[java] view plaincopy
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工具类
[java] view plaincopy
//直接采用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
感谢http://blog.csdn.net/stypace/article/details/38414871 经测试 前面第二种 读properties文件可用 注意jar包版本 注意properties文件的位置
需要使用的是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文件
[java] view plaincopy
<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内容如下:
[html] view plaincopy
<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文件
[java] view plaincopy
<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文件内容如下:
[plain] view plaincopy
<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读取
[java] view plaincopy
<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
[java] view plaincopy
<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。
[java] view plaincopy
<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
[java] view plaincopy
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工具类
[java] view plaincopy
//直接采用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
感谢http://blog.csdn.net/stypace/article/details/38414871 经测试 前面第二种 读properties文件可用 注意jar包版本 注意properties文件的位置
发表评论
-
java程序中没有错,但是项目上面显示一个红叉的解决办法
2017-11-27 09:51 3109java程序中没有错,但是项目上面显示一个红叉的解决办法 ... -
setCharacterEncoding未定义
2017-08-22 09:44 706setCharacterEncoding未定义 ... -
xml型字符串解析时存在& < >符号时的解决方案
2015-07-30 15:08 1326问题产生: 在接口调用得出一个xml型字符串 ... -
SoapUI的简单应用
2015-07-01 14:55 797几个好用的学习链接 百度文库 使用soapUI对Web ... -
nosuchMethodError org.hibernate.lockmode
2015-06-09 08:28 689昨天复制项目jar整理后项目跑不起来,一直出现 nosuch ... -
JS展开折叠效果
2015-04-29 14:27 1049亲手试验过 经过删减 某些代码 很好用 很精简的代码 很 ... -
JVM terminated. Exit code=-1
2015-04-07 11:13 829启动Eclipse时,启不起来JVM terminated. ... -
Java 中与时间有关的几个问题
2014-12-29 16:44 738Java 中与时间有关的几个问题 1. Date # 需 ... -
Java中的List按照元素的属性进行排序
2014-08-21 10:52 1120主要用到: Collections.sort()方法: 1 ... -
Clob2String代码
2014-04-03 14:30 625//oracle.sql.Clob类型转换成String类型 ...
相关推荐
在Java中,我们可以使用多种方法来读取配置文件,下面将详细介绍几种常见的方法。 1. **使用`java.io`流读取** 最基础的方式是使用Java的I/O流来读取文本配置文件(通常是.properties格式)。例如,`java.io....
在Java类中,读取配置文件信息可以使用多种方法,其中一种方法是使用`this.getClass().getClassLoader().getResourceAsStream`方法。 `this.getClass().getClassLoader().getResourceAsStream`方法是Java类中的一种...
在Java编程中,读取配置文件是常见的任务,特别是在构建可扩展和可维护的应用程序时。配置文件通常用于存储应用程序的设置、连接信息或其他敏感数据,这样可以将这些信息与核心代码分离,便于管理和更新。本篇文章将...
`Properties`类用于处理键值对,它是Java中读取配置文件的标准方式。 要获取配置文件中的数据,我们可以调用`Singleton.INSTANCE.getProperties()`。例如,如果配置文件中有`database.url`属性,我们可以通过以下...
在Java编程中,读取配置文件是常见的任务,特别是在构建可扩展和可维护的应用程序时。配置文件通常用于存储应用程序的动态设置,如数据库连接字符串、API密钥、服务器地址等,这些信息需要在运行时根据环境进行调整...
JAVA 高手解析 XML 配置文件的读取操作 本文主要讲解了 Java 中如何读取 XML 配置文件,并对 XML 解析器进行了分类,分别介绍了 DOM 和 SAX 两种解析方式的特点和使用...5. 在 Java 中读取 XML 配置文件的步骤和方法
在Java中,读取XML配置文件可以使用多种方法,如DOM、SAX、JDOM等。其中,SAX(Simple API for XML)是一种基于事件驱动的XML解析器,它可以快速高效地读取XML文件。 二、SAX解析XML配置文件 在本文中,我们使用...
在Java编程中,读取配置文件是常见的任务,它允许我们分离程序的配置信息,使得配置可以独立于代码进行修改,提高程序的可维护性和灵活性。这篇内容将深入讲解Java如何读取XML、INI等不同类型的配置文件。 一、XML...
在web项目中读取yml配置文件的工具类.可以实现将 server : port : portnumber : 8081 转换为 key为"server.port.portnumber",值为"8081"的Map,String>集合
使用 XML 作为 Java 的配置文件有很多好处,从 Tomcat 的安装配置文件和 J2EE 的配置文件中,我们已经看到 XML 的普遍应用,让我们也跟随流行趋势用 XML 武装起来。 现在关键是如何读取 XML 配置文件?有好几种 XML...
在Java编程中,读取配置文件是常见的任务,特别是在构建可扩展和灵活的应用程序时。配置文件通常存储了应用程序的参数、数据库连接信息、API密钥等敏感数据,需要在运行时动态加载。本实例代码将展示如何使用`Class....
java读取properties文件的工具类,传入配置文件名字和其中的key就可以读取
在项目中我们经常要把某些常量放在配置文件中,这样修改起来会比较方便,这个工具类可以帮我们直接在java类中读取配置文件内容
纯java底层读取配置文件,生成map,可以根据key模糊匹配查询,封装好了方法。比如getVal("spring.dubbo*url")
本文将详细介绍如何在Java中读取`properties`配置文件。 首先,我们需要了解`properties`文件的格式。一个标准的`.properties`文件通常包含多个行,每行由一个键和一个值组成,它们之间用等号(`=`)或冒号(`:`)...
在Java编程中,读取配置文件是常见的任务,主要用于存储应用程序的设置或环境变量,以方便管理和维护。Java提供了一个内置的`java.util.Properties`类,用于处理`.properties`文件,这种格式通常用来存储键值对,即...
标题“java读取配置文件源代码”表明我们将讨论一个Java程序,该程序用于从`.properties`文件中加载和解析配置数据。`.properties`文件是一种简单的键值对格式,广泛用于存储Java应用程序的配置信息。 首先,我们...