【Properties文件】Java使用Properties来读取配置文件

时间:2022-12-23 13:54:16

配置文件位置及内容

【Properties文件】Java使用Properties来读取配置文件
【Properties文件】Java使用Properties来读取配置文件


【Properties文件】Java使用Properties来读取配置文件
【Properties文件】Java使用Properties来读取配置文件
【Properties文件】Java使用Properties来读取配置文件
【Properties文件】Java使用Properties来读取配置文件

【Properties文件】Java使用Properties来读取配置文件


执行结果

【Properties文件】Java使用Properties来读取配置文件


程序代码


  1. package Utils.ConfigFile;
  2.  
  3. import java.io.BufferedInputStream;
  4. import java.io.BufferedReader;
  5. import java.io.File;
  6. import java.io.FileInputStream;
  7. import java.io.InputStream;
  8. import java.io.InputStreamReader;
  9. import java.util.Enumeration;
  10. import java.util.Iterator;
  11. import java.util.Map;
  12. import java.util.Properties;
  13.  
  14. public class PropertiesTest {
  15.  
  16.     /**
  17.      * 获取属性文件
  18.      * @param path  属性文件路径
  19.      * @return
  20.      */
  21.     public static Properties getPropsFile(String path) {
  22.         Properties props = new Properties();
  23.         try {
  24.             File file = new File(path);
  25.             InputStream in = new BufferedInputStream(new FileInputStream(file));
  26.  
  27.             //解决中午乱码问题--因为字节流无法读取中文,所以采用reader把inputStream转换成reader用字符流来读取中文
  28.             BufferedReader bf = new BufferedReader(new InputStreamReader(in));
  29.             props.load(bf);
  30.             in.close();
  31.         } catch (Exception e) {
  32.             return null;
  33.         }
  34.         return props;
  35.     }
  36.  
  37.     /**
  38.      * 显示所有键值
  39.      * @param properties
  40.      */
  41.     public static void showKeys(Properties properties){
  42.         Enumeration<?> enumeration = properties.propertyNames();
  43.  
  44.         System.out.println("======下面将显示所有key值============");
  45.         while(enumeration.hasMoreElements()){
  46.             Object key = enumeration.nextElement();
  47.             System.out.println(key);
  48.         }
  49.     }
  50.  
  51.     /**
  52.      * 显示所有value值
  53.      * @param properties
  54.      */
  55.     public static void showValues(Properties properties){
  56.         Enumeration<?> enumeration = properties.elements();
  57.  
  58.         System.out.println("======下面将显示所有value值============");
  59.         while(enumeration.hasMoreElements()){
  60.             Object value = enumeration.nextElement();
  61.             System.out.println(value);
  62.         }
  63.     }
  64.  
  65.     /**
  66.      * 显示所有key,value
  67.      * @param properties
  68.      */
  69.     public static void showKeysAndValues(Properties properties){
  70.         Iterator<Map.Entry<Object, Object>> it= properties.entrySet().iterator();
  71.  
  72.         System.out.println("======下面将显示所有<key,value>值---方式1============");
  73.         while (it.hasNext()) {
  74.             Map.Entry<Object, Object> entry = it.next();
  75.             Object key = entry.getKey().toString();
  76.             Object value = entry.getValue();
  77.             System.out.println("<" + key + "," + value + ">");
  78.         }
  79.     }
  80.  
  81.     /**
  82.      * 显示所有key,value
  83.      * @param properties
  84.      */
  85.     public static void showKeysAndValues2(Properties properties){
  86.         System.out.println("======下面将显示所有<key,value>值--方式2============");
  87.         for (Map.Entry<Object, Object> entry: properties.entrySet()) {
  88.             Object key = entry.getKey();
  89.             Object value = entry.getValue();
  90.             System.out.println("<" + key + "," + value + ">");
  91.         }
  92.     }
  93.  
  94.     public static void main(String args[]) {
  95.         Properties propFile = getPropsFile("C:\\myProperties.properties");
  96.  
  97.         showKeys(propFile);
  98.         showValues(propFile);
  99.         showKeysAndValues(propFile);
  100.         showKeysAndValues2(propFile);
  101.     }
  102. }

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 





【Properties文件】Java使用Properties来读取配置文件的更多相关文章

  1. JAVA使用相对路径读取配置文件

    JAVA使用相对路径读取配置文件[align=center][/align][size=medium][/size]   在软件开发中经常遇到读取配置文件,以及文件定位问题.今天做个总结.   (一) ...

  2. 读取properties文件------servletcontext及dao层读取

    用servletcontext读取properties文件-------1) 重点在于:InputStream in=this.getServletContext().getResourceAsStr ...

  3. 利用Properties属性集结合类加载器读取配置文件

    配置文件test.properties a=123 测试类Demo1.java public class Demo1 { public static void main(String[] args) ...

  4. 如何读取jar包外的properties文件和log4j&period;properties

    http://jrails.iteye.com/blog/1705464 ***************************************' 一般在项目中使用properties配置文件 ...

  5. 将properties文件放在Jar包并读取

    有时候需要在一个library内部打包一个properties文件,包含一些配置信息,而不能部署在外部. 在maven工程里面,将properties文件放在src/main/resources目录下 ...

  6. Java工程中如何读取配置文件中参数信息

    Java中读取配置文件中参数: 方法一:通过JDK中Properties来实现对配置文件的读取. Properties主要用于读取Java的配置文件,不同的编程语言有自己所支持的配置文件,配置文件中很 ...

  7. java 4种方式读取配置文件 &plus; 修改配置文件

    版权声明:本文为博主原创文章,未经博主允许不得转载.   目录(?)[-] 方式一采用ServletContext读取读取配置文件的realpath然后通过文件流读取出来 方式二采用ResourceB ...

  8. java读取package中的properties文件java&period;util&period;MissingResourceException

    文件结构: /build/classes/d914/Hello.class /build/classes/d914/mess.properties /build/classes/d914/mess_z ...

  9. Java读取Properties文件 Java加载配置Properties文件

    static{ Properties prop = new Properties(); prop.load(Thread.currentThread().getContextClassLoader() ...

  10. java web编程 servlet读取配置文件参数

    新建一个servlet. 然后在web.xml文件里面自动帮助你创建好了<servlet-name><servlet-class><servlet-mapping> ...

随机推荐

  1. 安卓四大组件之activity和获取网络资源之断点续传

    Day05 数据存储及多线程断点续传1.数据提交到服务器两种方式的优缺点* GET请求优点:使用非常方便,只需要在url后面组拼数据.缺点:数据在url的后面组拼,不安全.有数据长度限制.* POST ...

  2. Linux初学 - SSH

    SSH:SSH 为 Secure Shell 的缩写,由 IETF 的网络小组(Network Working Group)所制定:SSH 为建立在应用层和传输层基础上的安全协议.SSH 是目前较可靠 ...

  3. CastleActiveRecord在多线程 事务提交时数据库资源竞争导致更新失败的测试结果记录

    CastleActiveRecord 经过测试,隔离级别: // 摘要: ,         ,         ,         ,         ,         ,         ,   ...

  4. TCP&sol;IP&comma;HTTP&comma;Socket的区别与联系

    一 忆往昔,尽是悔恨泪.       在学校的时候学过,网络七层,也知道tcp的三次握手.但因为根本没用在实际开发中,所以逐渐淡忘.现在就再次理解下三个的区别与联系. 二 正题       网络七层: ...

  5. Linux&sol;Unix

    Linux/Unix 新手和专家教程 你正在找一些高质量的Linux 和 UNIX 的教程吗?如果是,这篇文章会告诉你到哪去找到这些教程.这里我们将给出超过30个相当的不错的 Linux 和 UNIX ...

  6. NSCondition

    一.NSCondition是对条件变量和互斥量的一个封装,用于线程之间的同步. 其中的互斥量用于保护对条件变量的修改,条件变量变化以信号量的方式通知其它线程实现线程之间的同步. 二.NSConditi ...

  7. a链接返回上一页

    <a href="javascript:void(0);" onclick="javascript:history.go(-1);" style='mar ...

  8. Hibernate的条件查询的几种方式

    1. 第一种,用?占位符,如: //登录(用?占位符) public List<UserPO> LoginUser(UserPO up)throws Exception{ Session ...

  9. Python3基础 getattr 获取对象的指定属性值

             Python : 3.7.0          OS : Ubuntu 18.04.1 LTS         IDE : PyCharm 2018.2.4       Conda ...

  10. web&period;py模版系统

    介绍: 调用的web.py模版语言Templetor旨在将python的强大功能带入模版.它不是为模板创建新语法,而是重用python语法. Templetor故意限制模版中的变量访问.用户可以访问传 ...