java加载property文件配置

1 properties简介:

properties是一种文本文件,内容格式为:
     key = value     #单行注释
适合作为简单配置文件使用,通常作为参数配置、国际化资源文件使用。
对于复杂的配置,就需要使用XML、YML、JSON等了

2 java加载Properties:

java加载properties主要通过2个util包下的工具类: Properties类、 ResourceBundle类

2.1 通过Properties类加载:

Properties类通过load()方法加载配置信息,这个方法接收一个输入流参数:InputStream、Reader。
     Properties提供get(String key) 方法读取指定的配置项。

2.1.1 通过ClassLoader获取InputStream加载:

  该方式只能读取类路径下的配置文件

(1)先创建Properties对象

(2)获取property文件对应的输入流in

(3)使用Properties加载输入流in

(4)通过Properties.get(key)方法获取配置,如果配置信息不存在,则返回null


/**
  * 基于ClassLoader读取properties;
  * 该方式只能读取类路径下的配置文件,有局限但是如果配置文件在类路径下比较方便。
  */
public static void method1() {
     System.out.println("使用ClassLoader方式加载properties");
     Properties properties = new Properties();
     /*
      * 使用ClassLoader加载properties配置文件生成对应的输入流。
      * 使用此种方式,要求property文件必须要放在src目录下,编译之后会被放到class文件相同目录下。
      * 因为ClassLoad的基础路径是相对于编译后class文件所在目录(可能是bin,classes),如果将properties放在项目根目录下,使用此种方式可能会找不到 properties文件
      */
     //必须要以 /开始    , 是在classes文件根目录下寻找
     InputStream in = PropertiesDemo.class.getResourceAsStream("/properties/a.properties");
     System.out.println(PropertiesDemo.class.getClassLoader().getResource(".").getPath());
     try {
        properties.load(in);
     } catch (IOException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
     }finally {
         closeResource(in);
     }
    
     System.out.println(properties.get("name"));
     System.out.println(properties.get("age"));
}

2.1.2 通过构建Reader加载:

该方式的优点在于可以读取任意路径下的配置文件

(1)创建Properties对象

(2)创建一个Reader,可以指定路径,不局限于类路径

(3)使用Properties加载Reader

(4)Properties.get(key)方法读取配置


/**
  * 使用inputStream读取配置文件
  * 该方式的优点在于可以读取任意路径下的配置文件
  */
public static void method2() {
     System.out.println("使用InputStream方式加载properties");
     Properties properties = new Properties();
      BufferedReader reader = null;
      try {
          /*
           * System.getProperty("user.dir"): 获取项目根路径,  而后附加配置文件的路径
          */
          reader = new BufferedReader(new FileReader(System.getProperty("user.dir") + "/properties/a.properties"));
          properties.load(reader);
          System.out.println(properties.get("name"));
          System.out.println(properties.get("age"));
      } catch (FileNotFoundException e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
      } catch (IOException e) {
          // TODO Auto-generated catch block
          e.printStackTrace();
      }finally {
          closeResource(reader);
      }
  }

2.2 通过ResourceBundle类加载:

ResourceBundle读取配置有2种方式:

(1)指定文件路径 :相对于src、classes的相对路径
    (2)提供InputStream
      ResourceBundle提供方法getString(key) 和 getObject(key)读取配置项
     使用路径加载,不需要指定文件后缀名且不需要手动关闭相关资源,比Properties类操作要简单


/**
  * 通过ResourceBundle 读取配置, 此种方式项目Properties要简单
  * ResourceBundle读取配置有2种方式: (1)指定文件路径 (2)提供InputStream
  */
public static void method3() {
     System.out.println("使用ResourceBundle方式加载properties");
     /*
      * (1)直接指定文件路径:

*   可以使用相对路径,从类路径开始,且不需要指定properties文件的后缀
      */
     ResourceBundle resource = ResourceBundle.getBundle("properties/b");
     System.out.println(resource.getString("name"));
     System.out.println(resource.getString("age"));

try {
         /*
          * (2)通过InputStream加载配置:

*    通过当前类的class实例,获取资源输入流
          */
         resource = new PropertyResourceBundle(PropertiesDemo.class.getResourceAsStream("/properties/a.properties"));
         System.out.println(resource.getString("name"));
         System.out.println(resource.getString("age"));
     } catch (IOException e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
     }
}

原文地址:https://www.cnblogs.com/zyj-468161691/p/12299277.html

时间: 2024-11-11 18:09:49

java加载property文件配置的相关文章

java加载资源文件

className.class.getResourceAsStream 用法: 第一: 要加载的文件和.class文件在同一目录下,例如:com.x.y 下有类Test.class ,同时有资源文件config.properties 那么,应该有如下代码: //前面没有"/"代表当前类的目录 InputStream is1 = Test.class.getResourceAsStream("config.properties"); System.out.printl

java加载properties文件的六中基本方式实现

java加载properties文件的方式主要分为两大类:一种是通过import java.util.Properties类中的load(InputStream in)方法加载: 另一种是通过import java.util.ResourceBundle类的getBundle(String baseName)方法加载. 注意:一定要区分路径格式 实现代码如下: 1 package com.util; 2 3 import java.io.FileInputStream; 4 import jav

java加载properties文件的六种方法总结

java加载properties文件的六种方法总结 java加载properties文件的六中基本方式实现 java加载properties文件的方式主要分为两大类: >一种是通过import java.util.Properties类中的load(InputStream in)方法加载: >另一种是通过import java.util.ResourceBundle类的getBundle(String baseName)方法加载. 注意:一定要区分路径格式 实现代码如下: 1 2 3 4 5

Java加载jar文件并调用jar文件当中有参数和返回值的方法

在工作当中经常遇到反编译后的jar文件,并要传入参数了解其中的某些方法的输出,想到Java里面的反射可以实现加载jar文件并调用其中的方法来达到自己的目的.就写了个Demo代码. 以下的类可以编译生成hello.jar文件. 1 package org.lele.fatpanda; 2 3 public class Util 4 { 5 public static String myName; 6 /* 7 * 无参数,无返回值的方法. 8 */ 9 public static void get

Java加载Class文件的原理机制

详见:http://blog.sina.com.cn/s/blog_6cbfd2170100ljmp.html 1.Java中的所有类,必须被装载到jvm中才能运行,这个装载工作是由jvm中的类装载器完成的,类装载器所做的工作实质是把类文件从硬盘读取到内存中 2.java中的类大致分为三种: 1.系统类 2.扩展类 3.由程序员自定义的类 3.类装载方式,有两种 1.隐式装载, 程序在运行过程中当碰到通过new 等方式生成对象时,隐式调用类装载器加载对应的类到jvm中. 2.显式装载, 通过cl

Java加载资源文件几种方法

from: http://andyzhu.blog.51cto.com/4386758/775836/ import java.net.URL; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class TestMain { public static void main

java加载XML文件并解析xml

import java.io.File; import java.util.List; import org.dom4j.Document; import org.dom4j.DocumentException; import org.dom4j.Element; import org.dom4j.io.SAXReader; public class Test { /** * @param args */ public static void main(String[] args) { // T

关于Java加载属性文件放在web容器不好使的解决办法

//使用Spring的工具就行了1 import java.util.Properties; 2 import org.springframework.core.io.support.PropertiesLoaderUtils; 3 4 Properties prop = PropertiesLoaderUtils.loadAllProperties("XXX.properties"); 5 prop.getProperty("name");

Java 加载Properties文件的六种方式

1.使用java.util.Properties类的load()方法 示例: InputStream in = lnew BufferedInputStream(new FileInputStream(name)); Properties p = new Properties(); p.load(in); 2.使用java.util.ResourceBundle类的getBundle()方法 示例: ResourceBundle rb = ResourceBundle.getBundle(nam