java读写src目录下的properties文件

对于properties文件的读写其实也很简单,只是路径不太好找,我查了很长时间才查到的,在这里分享给需要的朋友。

获取src目录下的properties文件的路径用下面这句代码:

 

[java] view plain copy
  1. this.getClass().getResource("/config.properties").getPath()  

 

[java] view plain copy
  1. /** 
  2.  * 读取配置文件 
  3.  * LiChaofei 
  4.  * 2013-1-31 上午9:10:07 
  5.  * @return 
  6.  */  
  7. private Properties loadProperty() {  
  8.     Properties prop=new Properties();  
  9.     try {  
  10. /           FileInputStream is=new FileInputStream("config.properties");  
  11.         InputStream is=this.getClass().getResourceAsStream("/config.properties");  
  12.         prop.load(is);  
  13.         is.close();  
  14.     } catch (IOException e) {  
  15.         e.printStackTrace();  
  16.     }  
  17.     return prop;  
  18. }  


[java] view plain copy
  1. /** 
  2.      * 保存修改后的配置文件 
  3.      * LiChaofei 
  4.      * 2013-1-31 上午9:09:51 
  5.      * @throws IOException  
  6.      */  
  7.     public void saveProperty() throws IOException{  
  8. //          FileOutputStream fos=new FileOutputStream("config.properties");  
  9.             OutputStream fos=new FileOutputStream(this.getClass().getResource("/config.properties").getPath());  
  10.             prop.setProperty(SERVER_PATH,serverPath);  
  11.             prop.setProperty(UPDATE_FILE_NAME, updateFileName);  
  12.             prop.setProperty(SOURCE_FILE_NAME, sourceFileName);  
  13.             prop.setProperty(SOURCE_PATH, sourcePath);  
  14.             prop.setProperty(VERSION_NAME, versionName);  
  15.             prop.setProperty(VERSION_CODE, versionCode);  
  16.             prop.setProperty(CONTAIN_CODE, String.valueOf(containCode));  
  17.             DateFormat df=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
  18.             prop.store(fos, df.format(new Date()));  
  19.          
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值