读取属性值和修改其值

package com.chehaha.theme;


import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.util.Enumeration;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;

import org.apache.jasper.tagplugins.jstl.core.Url;

import com.chehaha.common.exception.BizException;

/*
 * 读取Properties综合类,默认绑定到classpath下的config.properties文件。
 */
public class PropertiesUtil {
    
    
    /**
     * 
     */
    public static Map<String,String> readAllProperties() throws FileNotFoundException,IOException  {
        Map<String,String> map=  new HashMap<>();
        Properties prop = new Properties();     
        //读取属性文件a.properties
        InputStream in = new BufferedInputStream (new FileInputStream("application-dev.yml"));
        prop.load(in);     ///加载属性列表
        Iterator<String> it=prop.stringPropertyNames().iterator();
        while(it.hasNext()){
            String key=it.next();
            map.put(key, prop.getProperty(key));
            System.out.println(key+":"+prop.getProperty(key));
        }
        return map;
    }

    /**
     * 设置某个key的值,并保存至文件。
     * @param key key值
     * @return key 键对应的值 
     */
    public static void setValue(String key,String value) throws IOException {
         Properties prop = new Properties();     
         try{
             //读取属性文件
             InputStream in = new BufferedInputStream (new FileInputStream("application-dev.yml"));
             prop.load(in);     ///加载属性列表
             in.close();
             ///保存属性到文件
             FileOutputStream oFile = new FileOutputStream("application-dev.yml", true);//true表示追加打开
             prop.setProperty("testconfig", "10086");
             prop.store(oFile, "The New properties file");
             oFile.close();
         }
         catch(Exception e){
             System.out.println(e);
         }

    }
    
    public static void main(String[] args) { 
        Properties prop = new Properties();     
        try{
              InputStream in = new BufferedInputStream (new FileInputStream("application-dev.yml"));
              prop.load(in);     ///加载属性列表
              String property = prop.getProperty("testconfig"); 
              System.out.println(property); 
              in.close();
              
            ///保存属性到b.properties文件
            FileOutputStream oFile = new FileOutputStream("application-dev.yml", true);//true表示追加打开
            prop.setProperty("testconfig", "10086");
            prop.store(oFile, null);
            oFile.close();
        }
        catch(Exception e){
            System.out.println(e);
        }
    } 
    
    
}

猜你喜欢

转载自blog.csdn.net/qq_27988103/article/details/82983884