免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1434 | 回复: 0
打印 上一主题 下一主题

一个操作Properties的实用类。。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-02-19 09:25 |只看该作者 |倒序浏览
一个操作Properties的实用类。。
import java.io.*;
import java.net.*;
import java.util.*;
public class PropMan   
{
    private File propertiesFile;
    private static Map propetyManager = new HashMap();
    private static Object managerLock = new Object();
    private PropMan(String filename)
    {
        propertiesFile = null;
        setPropertyFile(filename);
    }
    public static PropMan getInstance(String propertyFileName)
    {
        return new PropMan(propertyFileName);
    }
    public void setPropertyFile(String filename)
    {
        try
        {
            propertiesFile = new File((new URI(getClass().getResource(filename).getPath())).getPath());
        }
        catch(URISyntaxException e)
        {
            System.out.println("error");
        }
    }
    private void loadProps(Properties prop)        throws UtilException
    {
        if(prop != null)
            prop.clear();
        InputStream in = null;
        try
        {
            in = new FileInputStream(propertiesFile);
            prop.load(in);
        }
        catch(Exception e)
        {
            String error = "Error reading the properties file: " + propertiesFile + " in PropMan.loadProps()n" + e;
            throw new UtilException(error);
        }
        finally
        {
            try
            {
                in.close();
            }
            catch(Exception e) { }
        }
        return;
    }
    private Properties getProperties()        throws UtilException
    {
        Properties prop = (Properties)propetyManager.get(propertiesFile);
        if(prop == null)
            synchronized(managerLock)
            {
                if(prop == null)
                {
                    prop = new Properties();
                    loadProps(prop);
                }
            }
        return prop;
    }
    public String getProperty(String name)
    {
        return getProperty(name, null);
    }
    public String getProperty(String name, String defaultString)
    {
        try
        {
            return getProperties().getProperty(name);
        }
        catch(Exception e)
        {
        }
        return defaultString;
    }
    public void setProperty(String name, String value)
    {
        Properties prop = null;
        try
        {
            prop = getProperties();
            if(prop == null)
                prop = new Properties();
        }
        catch(Exception e)
        {
            prop = new Properties();
        }
        prop.setProperty(name, value);
        propetyManager.put(propertiesFile, prop);
    }
    public void deleteProperty(String name)
    {
        try
        {
            Properties prop = getProperties();
            prop.remove(name);
            propetyManager.put(propertiesFile, prop);
        }
        catch(Exception e)
        {
        }
    }
    public void saveProperty()         throws UtilException
    {
        OutputStream out = null;
        try
        {
            if(!propertiesFile.exists())
                propertiesFile.createNewFile();
            out = new FileOutputStream(propertiesFile);
            ((Properties)propetyManager.get(propertiesFile)).store(out, propertiesFile.getPath());
        }
        catch(Exception ioe)
        {
            String errorMessage = "There was an error writing properties to " + propertiesFile + ". " ;
            throw new UtilException(errorMessage, ioe);
        }
        finally
        {
            try
            {
                out.close();
            }
            catch(Exception e) { }
        }
        return;
    }
    public void putProperty(String name, String value)
    {
        Properties prop = null;
        try
        {
            prop = getProperties();
            if(prop == null)
                prop = new Properties();
        }
        catch(Exception e)
        {
            prop = new Properties();
        }
        prop.put(name, value);
        propetyManager.put(propertiesFile, prop);
    }
    public Enumeration propertyNames()
    {
        try
        {
            return getProperties().propertyNames();
        }
        catch(UtilException e)
        {
            return ((Properties)propetyManager.get(propertiesFile)).propertyNames();
        }
    }
    public boolean propertyFileIsReadable()
    {
        try
        {
            return propertiesFile.canRead();
        }
        catch(Exception e)
        {
            return false;
        }
    }
    public boolean propertyFileIsWritable()
    {
        return propertiesFile.isFile() && propertiesFile.canWrite();
    }
    public boolean propertyFileExists()
    {
        return propertiesFile.exists() && propertiesFile.isFile();
    }
    public void reloadProps()         throws UtilException
    {
        loadProps(getProperties());
    }
}


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/303/showart_12559.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP