Java 读取、获取配置文件.properties中的数据

所属分类: 软件编程 / java 阅读数: 26
收藏 0 赞 0 分享

java获取配置文件.properties中的数据,具体内容如下所示:

方法太多,只写一种比较简单的。

 文件test1.properties内容

test1 = 123;
test2=3211
    Properties prop = new Properties();
    prop.load(new FileInputStream("src/test1.properties"));
    System.out.println(prop.get("test1"));

输出

123;1

简单封装一下,完整代码

package propertis.test;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Properties;
public class Test {
  /**
   * @param args
   * @throws IOException 
   * @throws FileNotFoundException 
   */
  public static void main(String[] args) throws FileNotFoundException, IOException {
    // TODO Auto-generated method stub
    Properties prop = new Properties();
    prop.load(new FileInputStream("src/test1.properties"));
    System.out.println(prop.get("test1"));
    System.out.println(ProUtil.getTest1Value("test1"));
    System.out.println(ProUtil.getTest1Value("test2"));
  }
}
class ProUtil{
  private static Properties prop = new Properties();
  static{
    try {
      prop.load(new FileInputStream("src/test1.properties"));
    } catch (FileNotFoundException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    } catch (IOException e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
  }
  public static Object getTest1Value(String key){
    return prop.get(key);
  }
}

输出

123;
123;
321

下面看下Java 读取Properties配置文件

方法:

Properties properties = new Properties();
FileInputStream in = new FileInputStream("**.properties");
properties.load(in);
in.close();

配置文件:

driver=com.mysql.jdbc.Driver
url=jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8
username=root
password=

代码实现:

import java.io.FileInputStream;
import java.util.Properties;
public class PropertiesTest {
 private static final String PROPERTIES_NAME = "db.properties";
 public static String DB_DRIVER = null;
 public static String DB_URL = null;
 public static String DB_USER = null;
 public static String DB_PWD = null;
 
 static{
 FileInputStream in = null;
 try{
  Properties properties = new Properties();
  in = new FileInputStream(PROPERTIES_NAME);
  properties.load(in);
  DB_DRIVER = properties.getProperty("driver");
  DB_URL = properties.getProperty("url");
  DB_USER = properties.getProperty("username");
  DB_PWD = properties.getProperty("passworld");
  System.out.println("读取配置信息成功!");
  showConfig();
 }catch(Exception e){
  e.printStackTrace();
  System.out.println("读取配置信息失败!");
 }finally{
  if(in != null){
  try{
   in.close();
  }catch(Exception e){
   e.printStackTrace();
  }
  }
 }
 }
 
 private static void showConfig(){
 System.out.println("-----------------------配置信息-----------------");
 System.out.println("dirver: "+DB_DRIVER);
 System.out.println("url: "+DB_URL);
 System.out.println("user: "+DB_USER);
 System.out.println("passworld: "+DB_PWD);
 System.out.println("----------------------------------------------");
 }
 
 public static void main(String[] args){
 
 }
}

运行结果:

读取配置信息成功!

-----------------------配置信息-----------------
dirver: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8
user: root
passworld: null
----------------------------------------------

以上所述是小编给大家介绍的Java 读取、获取配置文件.properties中的数据,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

更多精彩内容其他人还在看

Spring Boot 配置 IDEA和DevTools 热部署的方法

这篇文章主要介绍了Spring Boot 配置 IDEA和DevTools 热部署的方法,需要的朋友可以参考下
收藏 0 赞 0 分享

SpringBoot使用Redis缓存的实现方法

这篇文章主要介绍了SpringBoot使用Redis缓存的实现方法,需要的朋友可以参考下
收藏 0 赞 0 分享

SpringBoot中自定义参数绑定步骤详解

这篇文章主要介绍了SpringBoot中自定义参数绑定步骤详解,非常不错,具有参考借鉴价值 ,需要的朋友可以参考下
收藏 0 赞 0 分享

Java实现abc字符串排列组合

这篇文章主要为大家详细介绍了JAVA实现abc字符串的排列组合,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Java中后台线程实例解析

这篇文章主要介绍了Java中后台线程实例解析,分享了相关代码示例,小编觉得还是挺不错的,具有一定借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

ehcache模糊批量移除缓存的方法

本篇文章主要介绍了ehcache模糊批量移除缓存的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
收藏 0 赞 0 分享

Java多线程join方法实例代码

这篇文章主要介绍了Java多线程join方法实例代码,分享了相关代码示例,小编觉得还是挺不错的,具有一定借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享

java实现字符串排列组合问题

这篇文章主要为大家详细介绍了java实现字符串排列组合问题,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Java排列组合字符串的方法

这篇文章主要介绍了Java排列组合字符串的方法
收藏 0 赞 0 分享

Java语言中的自定义类加载器实例解析

这篇文章主要介绍了Java语言中的自定义类加载器实例解析,分享了相关代码示例,小编觉得还是挺不错的,具有一定借鉴价值,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多