Java学习笔记(二)——Java操作properties文件
【前面的话】
前段时间在学习和玩java web相关的东西,对于这些技术,一边学习,一边做东西,一边总结,希望可以一边成长和有所收获。有时总是思考太多反而成为了前进的阻力,所以对于生活还是简单一些,不以最坏的恶意去揣摩别人,但是对于技术还是要认真对待,一点都马虎不得。
前段时间做了一下开发,最近马上也要过年了,时间相对就比较多了,所以又回过头来看看书,巩固一下基础知识,做一些笔记,看看自己的思维,主要目的是为了自己积累,所以都是很基础、很基础的知识,请自行选择。如果看到这里要走了,祝新年快乐,也不枉进来一趟。
【问题背景】
在做完项目的第一期以后,发现由于项目中的一些变量需要经常修改,而修改.java文件就需要对于整个项目进行重新编译,而这个项目里面有很多图片,每次用eclipse进行编译都非常慢,所以就想到把所有需要经常改变的变量全部定义到.properties文件中,每次改变变量的值得时候,只需要去改变.properties文件中的变量值就可以,从而不需要重新编译代码,就可以直接运行,这样就比较方便了。
【术语定义】
- .properties文件注释:注释以#开始;
- .properties文件格式:文件格式为文本文件,可以使用记事本打开;
- .propertise文件内容:文件内容的格式是:“键=值”;
- JDK对于操作的支持:JDK 内置java.util.Properties 类可以使得我们操作.properties 文件;
- .properties示例:
1 #定义了max和min 2 max=1000 3 min=2
【代码描述】
- 项目中的代码不方便贴出,刚好在网上看到了一份代码,稍加改造,写出了一个demo,供读者参阅。
- 代码参考了【参考资料】中的部分代码(如涉及版权,请及时联系,好方便删除)。
- 代码写了三个文件如下:
- PropertiesText.java
- ActionText.java
- Maintext.java
- 另外还有.properties文件:
- text.properties
- ps:应该还有一个.properties文件,名字为:save.properties文件。这个文件在最开始是不需要自己动手建立,可以生成。
- 代码:
- PropertiesText.java
1 package configuration; 2 import java.io.FileInputStream; 3 import java.io.FileNotFoundException; 4 import java.io.FileOutputStream; 5 import java.io.IOException; 6 import java.util.Properties; 7 8 /** 9 * 读取properties文件 10 * @author Qutr 11 * 12 */ 13 public class PropertiesText 14 { 15 private Properties propertie; 16 private FileInputStream inputFile; 17 private FileOutputStream outputFile; 18 /** 19 * 初始化ProtertiesText类 20 */ 21 public PropertiesText() 22 { 23 propertie = new Properties(); 24 } 25 /** 26 * 初始化Configuration类 27 * @param filePath 要读取的配置文件的路径+名称 28 */ 29 public PropertiesText(String filePath) 30 { 31 propertie = new Properties(); 32 try{ 33 inputFile = new FileInputStream(filePath); 34 propertie.load(inputFile); 35 inputFile.close(); 36 } catch (FileNotFoundException ex){ 37 System.out.println("读取属性文件--->失败!- 原因:文件路径错误或者文件不存在"); 38 ex.printStackTrace(); 39 } catch (IOException ex) { 40 System.out.println("装载文件--->失败!"); 41 ex.printStackTrace(); 42 } 43 }//end ReadConfigInfo(...) 44 /** 45 * 重载函数,得到key的值 46 * @param key 取得其值的键 47 * @return key的值 48 */ 49 public String getValue(String key) 50 { 51 if(propertie.containsKey(key)){ 52 String value = propertie.getProperty(key);//得到某一属性的值 53 return value; 54 } 55 else 56 return ""; 57 }//end getValue(...) 58 /** 59 * 重载函数,得到key的值 60 * @param fileName properties文件的路径+文件名 61 * @param key 取得其值的键 62 * @return key的值 63 */ 64 public String getValue(String fileName, String key) 65 { 66 try{ 67 String value = ""; 68 inputFile = new FileInputStream(fileName); 69 propertie.load(inputFile); 70 inputFile.close(); 71 if(propertie.containsKey(key)){ 72 value = propertie.getProperty(key); 73 return value; 74 }else 75 return value; 76 } catch (FileNotFoundException e) { 77 e.printStackTrace(); 78 return ""; 79 } catch (IOException e) { 80 e.printStackTrace(); 81 return ""; 82 } catch (Exception ex){ 83 ex.printStackTrace(); 84 return ""; 85 } 86 }//end getValue(...) 87 /** 88 * 清除properties文件中所有的key和其值 89 */ 90 public void clear() 91 { 92 propertie.clear(); 93 }//end clear(); 94 /** 95 * 改变或添加一个key的值,当key存在于properties文件中时该key的值被value所代替, 96 * 当key不存在时,该key的值是value 97 * @param key 要存入的键 98 * @param value 要存入的值 99 */ 100 public void setValue(String key, String value) 101 { 102 propertie.setProperty(key, value); 103 }//end setValue(...) 104 /** 105 * 将更改后的文件数据存入指定的文件中,该文件可以事先不存在。 106 * @param fileName 文件路径+文件名称 107 * @param description 对该文件的描述 108 */ 109 public void saveFile(String fileName, String description) 110 { 111 try{ 112 outputFile = new FileOutputStream(fileName); 113 propertie.store(outputFile, description); 114 outputFile.close(); 115 } catch (FileNotFoundException e){ 116 e.printStackTrace(); 117 } catch (IOException ioe){ 118 ioe.printStackTrace(); 119 } 120 }//end saveFile(...) 121 }//end class ProtertiesText
2.Maintext.java
1 package configuration; 2 public class Maintext { 3 public static void main(String[] args){ 4 ActionText actiontext=new ActionText(); 5 actiontext.action(); 6 }//end main() 7 }
3.text.properties
1 aaaa=999999 2 b=10 3 max=10 4 d=0
4.ActionText.java版本1(有两个版本,说明不同的问题)
1 package configuration; 2 public class ActionText { 3 public void action(){ 4 String path=this.getClass().getResource("").getPath(); 5 System.out.println(path); 6 PropertiesText rc = new PropertiesText(path+"../../text.properties");//相对路径 7 String b = rc.getValue("aaaa");//以下读取properties文件的值 8 System.out.println("aaaa = " + b); 9 PropertiesText cf = new PropertiesText(); 10 String c = cf.getValue(path+"../../text.properties", "aaaa"); 11 System.out.println("c = " + c); 12 cf.setValue("b", "99"); 13 cf.setValue("max", "1000"); 14 cf.saveFile(path+"../../save.properties","test"); 15 } 16 }
4.ActionText.java版本2(有两个版本,说明不同的问题)
1 package configuration; 2 3 public class ActionText { 4 public void action(){ 5 String path=ActionText.class.getClassLoader().getResource("").getPath(); 6 System.out.println(path); 7 PropertiesText rc = new PropertiesText(path+"../text.properties");//相对路径 8 String b = rc.getValue("a");//以下读取properties文件的值 9 System.out.println("a = " + b); 10 PropertiesText cf = new PropertiesText(); 11 String c = cf.getValue(path+"../text.properties", "a"); 12 System.out.println("c = " + c); 13 cf.setValue("b", "99"); 14 cf.setValue("max", "1000"); 15 cf.saveFile(path+"../save.properties","test"); 16 } 17 }
【运行结果】
1.版本1运行结果:
- 打印到控制台的结果:
1 /D:/workspace8/PropertiesText/bin/configuration/ 2 aaaa = 999999 3 c = 999999
- 存储到save中的数据:
1 #test 2 #Sun Jan 26 09:47:10 CST 2014 3 max=1000 4 b=99 5 aaaa=999999 6 d=0
2.版本2运行结果:
- 打印到控制台的结果:
1 /D:/workspace8/PropertiesText/bin/ 2 aaaa = 999999 3 c = 999999
- 存储到save中的数据:
1 #test 2 #Sun Jan 26 15:38:01 CST 2014 3 max=1000 4 b=99 5 aaaa=999999 6 d=0
【结果分析】
上面写两个版本的ActionText.java是为了区分下面两行代码:
String path=this.getClass().getResource("").getPath();(1)
String path=ActionText.class.getClassLoader().getResource("").getPath();(2)
1, 运行的结果可以看到这两者的区别
2, 代码(1)只能运行在非静态方法中
代码(2)可以运行在非静态方法和静态方法中。
【遇到问题】
其实上面的代码还是比较好操作,但是还是会有一些问题可能会遇到:
1,路径问题:在做的过程中,会遇到路径找不到,这里不具体分析相对路径和绝对路径的详细介绍,有时间单独写。
相对路径:就是你的主页上的文件或目录在硬盘上真正的路径,(URL和物理路径)。
绝对路径:相对与某个基准目录的路径。
2,错误:Invalid escape sequence (valid ones are \b \t \n \f \r \" \' \\ )
原因:这是一个正则表达式的错误,我理解的是,"\"在java中当作特殊字符处理的,所以这里就会把\t当作转义字符处理。
解决:所以提示有正则表达式的错误,改为\\就行。
3,当我在本地已经作好了以后,部署到服务器发现一直提醒找不到路径,打印出路径发现,把路径中的空格全变成了%20
解决办法:path=path.replaceAll("%20", " ");
ps:我没有找到更好的办法,使用了上面的办法。
4,静态方法中不能用this。
原因:this代表的是调用这个函数的对象的引用,而静态方法是属于类的,不属于对象,静态方法成功加载后,对象还不一定存在。
【参考资料】
Java Properties 类读取配置文件信息http://wenku.baidu.com/view/47dfcd2c2af90242a895e5d6.html
【后面的话】
自己以前就很喜欢写东西,但是比较少的写技术类的学习笔记,最近开始写,感觉很好,读到别人写的技术文章也很受教,有时看到别人写的条理性很清晰,并且很有见地的文章都很激动,希望自己可以写的越来越好,并且多一些自己的见解而不仅仅是对知识的照搬,可以多一些自己独到的东西在里面。
最近看到的一些话,分享一下:
- 人一辈子都在高潮低潮中浮沉,惟有庸碌的人,生活才如死水一般;或者要有极高的修养,方能廓然无累,真正的解脱。只要高潮不过分使你紧张,低潮不过分使你颓废,就好了。——《傅雷家书》
- 我相信你逐渐会学会这一套,越来越坚强的。我以前在信中和你提过感情的ruin[创伤,覆灭],就是要你把这些事当做心灵的灰烬看,看的时候当然不免感触万端,但不要刻骨铭心地伤害自己,而要像对着古战场一般的存着凭吊的心怀。——《傅雷家书》
- 寒塘渡鹤影,冷月葬花魂。——《红楼梦》
- 门前节选:
- 草在结它的种子
- 风在摇它的叶子
- 我们站着,不说话——《门前》
——TT