properties文件的读取

一、问题阐述

 

本文给出了读取properties文件的简单实例。重点在于解释如果定位properties文件在项目中的相对目录。

 

二、代码

 

1. properties文件named ipConfig:

 

   ip=192.168.0.1  

   port=8080

 

2. 读取文件的代码:

 

   InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("ipConfig.properties");  
   Properties p = new Properties();  
   try {  
         p.load(inputStream);  
      } catch (IOException e1) {  
       e1.printStackTrace();  
      }  
   System.out.println("ip:"+p.getProperty("ip")+",port:"+p.getProperty("port"));

 

其中this.getClass().getClassLoader().getResourceAsStream("ipConfig.properties")中的this是执行这段代码的类,ipConfig.properties与this这个类必在同一级目录下,即在一个folder里。因此,如果想找到ipConfig.properties,你就可以在以上方法中直接new出与ipConfig.properties在同一级目录下的任一Class,例如Class c = new Class(); 然后就可以通过 c.getClass().getClassLoader().getResourceAsStream("ipConfig.properties")来得到ipConfig.properties的InputStream。

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值