博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
路径1
阅读量:6268 次
发布时间:2019-06-22

本文共 4291 字,大约阅读时间需要 14 分钟。

 

目前的代码如下:

 

 

  1. import java.io.File;  
  2. import java.io.FileInputStream;  
  3. import java.io.FileNotFoundException;  
  4. import java.io.IOException;  
  5. import java.io.InputStream;  
  6. import java.io.UnsupportedEncodingException;  
  7. import java.net.URLDecoder;  
  8. import java.util.Iterator;  
  9. import java.util.Properties;  
  10. import java.util.Set;  
  11. import java.util.logging.Level;  
  12. import java.util.logging.Logger;  
  13.   
  14. /** 
  15.  * 
  16.  * @author zcb 
  17.  */  
  18. public class Test {  
  19.   
  20.     public static void main(String args[]) {  
  21.   
  22.         Test test = new Test();  
  23.         InputStream in = null;  
  24.         Properties props = new Properties();  
  25.         //第一种方法,取得src下的属性文件,成功   
  26.         in = test.getClass().getResourceAsStream("/mypropertiestest.properties");  
  27.   
  28.         //第二种方法,取得src下的属性文件,相对第一种少了个“/”,注意:error,不行,此时取得的路径是到classes文件夹   
  29. //        System.out.println("path:"+test.getClass().getResource("mypropertiestest.properties").getPath());   
  30. //        in = test.getClass().getResourceAsStream("mypropertiestest.properties");   
  31.           
  32.   
  33.         //第三种种方法,通过绝对路径,取得src下的属性文件,成功,但对apusic服务器不大理想,属性文件要拷贝到项目外面   
  34. //        String filepath = test.getClass().getResource("/").getPath()  + java.io.File.separator + "mypropertiestest.properties";   
  35. //        try {   
  36.         filepath = filepath.substring(1).replaceAll("%20", " ");//or filepath = filepath.replaceAll("%20", " ");   
  37. //            filepath = URLDecoder.decode(filepath, "UTF-8");   
  38. //        } catch (UnsupportedEncodingException ex) {   
  39. //            Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);   
  40. //        }   
  41. //        try {   
  42. //            in = new FileInputStream(new File(filepath));   
  43. //        } catch (FileNotFoundException ex) {   
  44. //            Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);   
  45. //        }   
  46.         try {  
  47.             props.load(in);  
  48.         } catch (IOException e) {  
  49.             e.printStackTrace();  
  50.         } finally {  
  51.             if (in != null) {  
  52.                 try {  
  53.                     in.close();  
  54.                 } catch (IOException ex) {  
  55.                     Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);  
  56.                 }  
  57.             }  
  58.         }  
  59.   
  60.         //输出属性文件中的信息   
  61.         Set set = props.keySet();  
  62.         Iterator it = set.iterator();  
  63.         System.out.println("Begin ...");  
  64.         while (it.hasNext()) {  
  65.             String key = (String) it.next();  
  66.             System.out.println(key + "=" + props.getProperty(key));  
  67.         }  
  68.         System.out.println("End");  
  69.     }  
  70. }  
Java代码 
  1. import java.io.File;  
  2. import java.io.FileInputStream;  
  3. import java.io.FileNotFoundException;  
  4. import java.io.IOException;  
  5. import java.io.InputStream;  
  6. import java.io.UnsupportedEncodingException;  
  7. import java.net.URLDecoder;  
  8. import java.util.Iterator;  
  9. import java.util.Properties;  
  10. import java.util.Set;  
  11. import java.util.logging.Level;  
  12. import java.util.logging.Logger;  
  13.   
  14. /** 
  15.  * 
  16.  * @author zcb 
  17.  */  
  18. public class Test {  
  19.   
  20.     public static void main(String args[]) {  
  21.   
  22.         Test test = new Test();  
  23.         InputStream in = null;  
  24.         Properties props = new Properties();  
  25.         //第一种方法,取得src下的属性文件,成功  
  26.         in = test.getClass().getResourceAsStream("/mypropertiestest.properties");  
  27.   
  28.         //第二种方法,取得src下的属性文件,相对第一种少了个“/”,注意:error,不行,此时取得的路径是到classes文件夹  
  29. //        System.out.println("path:"+test.getClass().getResource("mypropertiestest.properties").getPath());  
  30. //        in = test.getClass().getResourceAsStream("mypropertiestest.properties");  
  31.           
  32.   
  33.         //第三种种方法,通过绝对路径,取得src下的属性文件,成功,但对apusic服务器不大理想,属性文件要拷贝到项目外面  
  34. //        String filepath = test.getClass().getResource("/").getPath()  + java.io.File.separator + "mypropertiestest.properties";  
  35. //        try {  
  36.         filepath = filepath.substring(1).replaceAll("%20", " ");//or filepath = filepath.replaceAll("%20", " ");  
  37. //            filepath = URLDecoder.decode(filepath, "UTF-8");  
  38. //        } catch (UnsupportedEncodingException ex) {  
  39. //            Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);  
  40. //        }  
  41. //        try {  
  42. //            in = new FileInputStream(new File(filepath));  
  43. //        } catch (FileNotFoundException ex) {  
  44. //            Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);  
  45. //        }  
  46.         try {  
  47.             props.load(in);  
  48.         } catch (IOException e) {  
  49.             e.printStackTrace();  
  50.         } finally {  
  51.             if (in != null) {  
  52.                 try {  
  53.                     in.close();  
  54.                 } catch (IOException ex) {  
  55.                     Logger.getLogger(Test.class.getName()).log(Level.SEVERE, null, ex);  
  56.                 }  
  57.             }  
  58.         }  
  59.   
  60.         //输出属性文件中的信息  
  61.         Set set = props.keySet();  
  62.         Iterator it = set.iterator();  
  63.         System.out.println("Begin ...");  
  64.         while (it.hasNext()) {  
  65.             String key = (String) it.next();  
  66.             System.out.println(key + "=" + props.getProperty(key));  
  67.         }  
  68.         System.out.println("End");  
  69.     }  
  70. }  

 

 

 

在windows下测试通过,Linux没测试,需要进一步研究。

 

补充:使用ClassLoader.getSystemResourceAsStream("/mypropertiestest.properties")和Thread.currentThread().getContextClassLoader().getResourceAsStream("/mypropertiestest.properties")读取src下的属性文件,通过测试,在windows和Linux下的tomcat和apusic都能成功。

转载于:https://www.cnblogs.com/shenzhichipingguo/p/9318989.html

你可能感兴趣的文章
jacky自问自答-java并发编程
查看>>
Struts2+JSON数据
查看>>
zTree实现单独选中根节点中第一个节点
查看>>
Cocos2D-x设计模式发掘之中的一个:单例模式
查看>>
很强大的HTML+CSS+JS面试题(附带答案)
查看>>
用树莓派实现RGB LED的颜色控制——C语言版本号
查看>>
VC2012编译CEF3-转
查看>>
java 自己定义异常,记录日志简单说明!留着以后真接复制
查看>>
Android 使用AIDL实现进程间的通信
查看>>
机器学习(Machine Learning)&深度学习(Deep Learning)资料
查看>>
jquery的图片轮播 模板类型
查看>>
C# 获取文件名及扩展名
查看>>
Web安全学习计划
查看>>
输出有序数组的连续序列范围
查看>>
zinnia项目功能分析
查看>>
windows cmd for paramiko
查看>>
SQL经典面试题集锦
查看>>
View学习(一)-DecorView,measureSpec与LayoutParams
查看>>
色彩力量!21款你应该知道的优秀品牌设计
查看>>
SDUT 3503 有两个正整数,求N!的K进制的位数
查看>>