java 解析properties文件 工具类 通用

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.util.HashMap;
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
import java.util.Set;


public class PropertiesUtil {




public static String getProperties(String key) {
Properties prop = new Properties();
InputStream url = PropertiesUtil.class.getResourceAsStream("/conf/deploy.properties");
FileInputStream in = null;
try {
prop.load(url);
} catch (FileNotFoundException e1) {
e1.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if(in != null){
try {
in.close();
in= null;
} catch (IOException e) {
e.printStackTrace();
}
}
}




return (String)prop.get(key);


}

public static String getProperties(String path,String key) {
Properties prop = new Properties();
InputStream url = null;
FileInputStream in = null;
try {
url = new FileInputStream(path);
} catch (FileNotFoundException e2) {
// TODO Auto-generated catch block
e2.printStackTrace();
}

try {
prop.load(url);
} catch (FileNotFoundException e1) {
e1.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
if(in != null){
try {
in.close();
in= null;
} catch (IOException e) {
e.printStackTrace();
}
}
}




return (String)prop.get(key);


}

public static void addProperties(String key,String value){

InputStream url = PropertiesUtil.class.getResourceAsStream("/conf/deploy.properties");
Properties prop = new Properties();
try {
prop.load(url);
} catch (IOException e) {
e.printStackTrace();
}

/*Map toSaveMap = new HashMap();
Set keys = prop.keySet();
for (Iterator itr = keys.iterator(); itr.hasNext();) {
String oldKey = (String) itr.next();
Object oldValue = prop.get(oldKey);
toSaveMap.put(oldKey, oldValue);
}
toSaveMap.put(key,value);  
prop.putAll(toSaveMap);

System.out.println(toSaveMap.toString());*/
prop.put(key, value);

        try  
        {  
            OutputStream outputStream = new FileOutputStream(new File(PropertiesUtil.class.getResource("/conf/deploy.properties").getFile()));  
            prop.store(outputStream, null);
            outputStream.flush();
            outputStream.close();  
            System.out.println("添加成功");
        }  
        catch (IOException e)  
        {  
            e.printStackTrace();  
        }  
}

public static void addProperties(String path,String key,String value){
InputStream url = null;
try {
url = new FileInputStream(path);
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Properties prop = new Properties();
try {
prop.load(url);
} catch (IOException e) {
e.printStackTrace();
}

Map toSaveMap = new HashMap();
Set keys = prop.keySet();
for (Iterator itr = keys.iterator(); itr.hasNext();) {
String oldKey = (String) itr.next();
Object oldValue = prop.get(oldKey);
toSaveMap.put(oldKey, oldValue);
}
toSaveMap.put(key,value);  
prop.putAll(toSaveMap);

System.out.println(toSaveMap.toString());

        try  
        {  
            OutputStream outputStream = new FileOutputStream(new File(path));  
            prop.store(outputStream, null);
            outputStream.flush();
            outputStream.close();  
            System.out.println("添加成功");
        }  
        catch (IOException e)  
        {  
            e.printStackTrace();  
        }  
}


public static void updateProperties(String key,String value) {
InputStream url = PropertiesUtil.class.getResourceAsStream("/conf/deploy.properties");
Properties prop = new Properties();
try {
prop.load(url);
} catch (IOException e) {
e.printStackTrace();
}

/*Map toSaveMap = new HashMap();
Set keys = prop.keySet();
for (Iterator itr = keys.iterator(); itr.hasNext();) {
String oldKey = (String) itr.next();
Object oldValue = prop.get(oldKey);
toSaveMap.put(oldKey, oldValue);
}
toSaveMap.put(key,value);  
prop.putAll(toSaveMap);

System.out.println(toSaveMap.toString());*/
prop.put(key, value);

        try  
        {  
            OutputStream outputStream = new FileOutputStream(new File(PropertiesUtil.class.getResource("/conf/deploy.properties").getFile()));  
            prop.store(outputStream, null);
            outputStream.flush();
            outputStream.close();  
            System.out.println("修改成功");
        }  
        catch (IOException e)  
        {  
            e.printStackTrace();  
        }  
}


public static void updateProperties(String path,String key,String value) {
InputStream url = null;
try {
url = new FileInputStream(path);
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Properties prop = new Properties();
try {
prop.load(url);
} catch (IOException e) {
e.printStackTrace();
}

/*Map toSaveMap = new HashMap();
Set keys = prop.keySet();
for (Iterator itr = keys.iterator(); itr.hasNext();) {
String oldKey = (String) itr.next();
Object oldValue = prop.get(oldKey);
toSaveMap.put(oldKey, oldValue);
}
toSaveMap.put(key,value);  
prop.putAll(toSaveMap);

System.out.println(toSaveMap.toString());*/
prop.put(key, value);

        try  
        {  
            OutputStream outputStream = new FileOutputStream(new File(path));  
            prop.store(outputStream, null);
            outputStream.flush();
            outputStream.close();  
            System.out.println("修改成功");
        }   
        catch (IOException e)  
        {  
            e.printStackTrace();  
        }  
}


public void delProperties(String key)
{

//将文件中key,value先拿出来
InputStream url = PropertiesUtil.class.getResourceAsStream("/conf/deploy.properties");
Properties prop = new Properties();
try {
prop.load(url);
} catch (IOException e) {
e.printStackTrace();
}

/*Map toSaveMap = new HashMap();
Set keys = prop.keySet();
for (Iterator itr = keys.iterator(); itr.hasNext();)
{
String oldKey = (String) itr.next();
Object oldValue = prop.get(oldKey);
toSaveMap.put(oldKey, oldValue);
}
prop.clear();
toSaveMap.remove(key);


prop.putAll(toSaveMap);*/
prop.remove(key);


//将所有键值对再写入文件
        try  
        {  
            FileOutputStream outputStream = new FileOutputStream(PropertiesUtil.class.getResource("/conf/deploy.properties").getFile());  
            prop.store(outputStream, null);
            outputStream.flush();
            outputStream.close();  
            System.out.println("删除成功");
        }  
        catch (IOException e)  
        {  
            e.printStackTrace();  
        }  
}


public void delProperties(String path,String key)
{

//将文件中key,value先拿出来
InputStream url = null;
try {
url = new FileInputStream(path);
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Properties prop = new Properties();
try {
prop.load(url);
} catch (IOException e) {
e.printStackTrace();
}

/*Map toSaveMap = new HashMap();
Set keys = prop.keySet();
for (Iterator itr = keys.iterator(); itr.hasNext();)
{
String oldKey = (String) itr.next();
Object oldValue = prop.get(oldKey);
toSaveMap.put(oldKey, oldValue);
}
prop.clear();
toSaveMap.remove(key);


prop.putAll(toSaveMap);

System.out.println(toSaveMap.toString());*/
prop.remove(key);

//将所有键值对再写入文件
        try  
        {  
            FileOutputStream outputStream = new FileOutputStream(path);  
            prop.store(outputStream, null);
            outputStream.flush();
            outputStream.close();  
            System.out.println("删除成功");
        }  
        catch (IOException e)  
        {  
            e.printStackTrace();  
        }  
}


}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值