java基础之对properties配置文件的读写操作

1、test.properties文件处于与src并列的位置,即根目录

这里写图片描述

2、源码


/**
 * 1.clipse:test.properties文件处于与src并列的位置,即根目录
 */
/**
 * 2.Android studio:test.properties文件放于assets文件夹下
 * 读入输出流方法:InputStream in =getAssets().open("test.txt");  
 * 获得AssetManger 对象, 调用其open 方法取得  对应的inputStream对象 
 */

public class PropertiesTest {

    /**
     * 1.读取配置文件
     * 
     * @throws IOException
     */
    @Test
    public void read() throws IOException {
        Properties properties = new Properties();
        File file = new File("test.properties");
        FileInputStream fis = new FileInputStream(file);
        try {
            // 读取配置文件
            properties.load(fis);
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        Set<Object> keySet = properties.keySet();
        for (Object object : keySet) {
            System.out.println(object.toString() + ":"
                    + properties.getProperty(object.toString()));
        }
    }

    /**
     * 2.向配置文件写入内容
     * 
     * @throws IOException
     */
    @Test
    public void write() throws IOException {
        Properties properties = new Properties();
        String file = "test.properties";
        OutputStream fos = new FileOutputStream(file);
        properties.setProperty("aa", "123");
        properties.setProperty("bb", "456");
        properties.setProperty("cc", "789");
        properties.setProperty("name", "张三");
        properties.store(fos, "保存文件");
        fos.close();
    }

    /**
     * 3.对配置文件的修改
     * 
     * @throws IOException
     */
    @Test
    public void update() throws IOException {
        Properties properties = new Properties();
        File file = new File("test.properties");
        FileInputStream fis = new FileInputStream(file);
        FileOutputStream fos = new FileOutputStream(file);
        try {
            // 读取配置文件
            properties.load(fis);
        } catch (IOException e1) {
            e1.printStackTrace();
        }
        properties.setProperty("name", "李四");
        properties.setProperty("age", "222");
        properties.setProperty("age3", "222");
        properties.store(fos, "更新配置文件");
        fos.close();
        fis.close();
    }

    /**
     * 4.删除配置文件中的key
     * @throws IOException
     *
     */
    @Test
    public void delete() throws IOException{
       Properties properties = new Properties();
       File file = new File("test.properties");
       FileInputStream fis = new FileInputStream(file);  
       try {
            // 读取配置文件
            properties.load(fis);
        } catch (IOException e1) {
            e1.printStackTrace();
        } 
       //必须先用map将所有的内容先保存,不然一删除,原来的内容都没了
       Map<String, String> map = new HashMap<String, String>();
       Set<Object> keySet = properties.keySet();

       System.out.println(keySet.size());

       for (Object object : keySet) {
           String key = (String) object;
           String value = (String) properties.get(key);
           System.out.println(key+"="+value);
           map.put(key, value);
       }
       //删除key
       map.remove("age3");
       properties.remove("age3");

       for (java.util.Map.Entry<String, String> entry: map.entrySet()) {
           properties.setProperty(entry.getKey(), entry.getValue());
       }

       FileOutputStream fos = new FileOutputStream(file);
       properties.store(fos, "删除配置文件中的key:age3");     
       fos.close();
       fis.close();
    }  
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值