Chinaunix首页 | 论坛 | 博客
  • 博客访问: 221721
  • 博文数量: 67
  • 博客积分: 2510
  • 博客等级: 少校
  • 技术积分: 890
  • 用 户 组: 普通用户
  • 注册时间: 2008-01-17 09:42
文章分类

全部博文(67)

文章存档

2010年(5)

2009年(7)

2008年(55)

我的朋友

分类: Java

2008-08-04 15:58:45

readProperties(String file) throws IOException
    {
        InputStream is=new FileInputStream(new File(file));
        Properties properties= new Properties();
        properties.load(is);
        
         for (Enumeration e = properties.keys(); e.hasMoreElements();) {
                String key = ((String)e.nextElement()).trim();
                String value = properties.getProperty(key).trim();
                System.out.println(key+":"+value);
         }
         
         OutputStream fos = new FileOutputStream(file);
         properties.setProperty("name", "1");
         properties.store(fos, "Update 'name' value");
    }
阅读(374) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~