Java中Properties类的操作
作者:网络转载 发布时间:[ 2015/12/28 11:20:58 ] 推荐标签:测试开发技术 编程语言
2、随便新建一个配置文件(Test.properties)
name=JJ
Weight=4444
Height=3333
1 public class getProperties {
2 public static void main(String[] args) throws FileNotFoundException, IOException {
3 Properties pps = new Properties();
4 pps.load(new FileInputStream("Test.properties"));
5 Enumeration enum1 = pps.propertyNames();//得到配置文件的名字
6 while(enum1.hasMoreElements()) {
7 String strKey = (String) enum1.nextElement();
8 String strValue = pps.getProperty(strKey);
9 System.out.println(strKey + "=" + strValue);
10 }
11 }
12 }
3、一个比较综合的实例
根据key读取value
读取properties的全部信息
写入新的properties信息
1 //关于Properties类常用的操作
2 public class TestProperties {
3 //根据Key读取Value
4 public static String GetValueByKey(String filePath, String key) {
5 Properties pps = new Properties();
6 try {
7 InputStream in = new BufferedInputStream (new FileInputStream(filePath));
8 pps.load(in);
9 String value = pps.getProperty(key);
10 System.out.println(key + " = " + value);
11 return value;
12
13 }catch (IOException e) {
14 e.printStackTrace();
15 return null;
16 }
17 }
18
19 //读取Properties的全部信息
20 public static void GetAllProperties(String filePath) throws IOException {
21 Properties pps = new Properties();
22 InputStream in = new BufferedInputStream(new FileInputStream(filePath));
23 pps.load(in);
24 Enumeration en = pps.propertyNames(); //得到配置文件的名字
25
26 while(en.hasMoreElements()) {
27 String strKey = (String) en.nextElement();
28 String strValue = pps.getProperty(strKey);
29 System.out.println(strKey + "=" + strValue);
30 }
31
32 }
33
34 //写入Properties信息
35 public static void WriteProperties (String filePath, String pKey, String pValue) throws IOException {
36 Properties pps = new Properties();
37
38 InputStream in = new FileInputStream(filePath);
39 //从输入流中读取属性列表(键和元素对)
40 pps.load(in);
41 //调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。
42 //强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。
43 OutputStream out = new FileOutputStream(filePath);
44 pps.setProperty(pKey, pValue);
45 //以适合使用 load 方法加载到 Properties 表中的格式,
46 //将此 Properties 表中的属性列表(键和元素对)写入输出流
47 pps.store(out, "Update " + pKey + " name");
48 }
49
50 public static void main(String [] args) throws IOException{
51 //String value = GetValueByKey("Test.properties", "name");
52 //System.out.println(value);
53 //GetAllProperties("Test.properties");
54 WriteProperties("Test.properties","long", "212");
55 }
56 }
结果:
Test.properties中文件的数据为:
#Update long name
#Sun Feb 23 18:17:16 CST 2014
name=JJ
Weight=4444
long=212
Height=3333
本文内容不用于商业目的,如涉及知识产权问题,请权利人联系SPASVO小编(021-61079698-8054),我们将立即处理,马上删除。
相关推荐
Java性能测试有哪些不为众人所知的原则?Java设计模式??装饰者模式谈谈Java中遍历Map的几种方法Java Web入门必知你需要理解的Java反射机制知识总结编写更好的Java单元测试的7个技巧编程常用的几种时间戳转换(java .net 数据库)适合Java开发者学习的Python入门教程Java webdriver如何获取浏览器新窗口中的元素?Java重写与重载(区别与用途)Java变量的分类与初始化JavaScript有这几种测试分类Java有哪四个核心技术?给 Java开发者的10个大数据工具和框架Java中几个常用设计模式汇总java生态圈常用技术框架、开源中间件,系统架构及经典案例等
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11热门文章
常见的移动App Bug??崩溃的测试用例设计如何用Jmeter做压力测试QC使用说明APP压力测试入门教程移动app测试中的主要问题jenkins+testng+ant+webdriver持续集成测试使用JMeter进行HTTP负载测试Selenium 2.0 WebDriver 使用指南