zoukankan      html  css  js  c++  java
  • Properties工具类


    /*
    * Author: frank
    * Properties工具类
    */
    package com.he;


    import java.io.FileWriter;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.Writer;
    import java.util.Properties;

    public class PropertiesTool {
        private static Properties prop = null;
        private static final String path = "src/test.properties" ;
            
        private static void init() {
            prop = new Properties();
            InputStream is = null;
            try {
                is = PropertiesTool.class.getClassLoader().getResourceAsStream("test.properties");
                prop.load(is);
                is.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
            
        }
        
        public static String getProperty(String key) {
            
            if(prop == null) {
                init();
            }
            return prop.getProperty(key);
        }
        
         public static boolean setProperties(String key,String value) {  
               
               if(prop == null) {
                    init();
                }

                Writer writer = null;
                try {
                    writer = new FileWriter(path);
                    prop.setProperty(key, value);
                    prop.store(writer, key);  
                    
                    return true;
                } catch (IOException e) {
                    e.printStackTrace();
                    return false;
                } finally {
                    try {
                        if(writer != null) {
                            writer.close();
                        }
                    } catch(Exception e) {
                        e.printStackTrace();
                    }
                    
                }
         }  
    }

  • 相关阅读:
    取2个日期间的天数
    C#代码与JAVASCRIPT函数的相互调用
    ASP.NET验证码(3种)
    VS2008自带SQL 2005如何使用
    文本框默认有一个值,然后鼠标点上去那个值就清空
    远程桌面连接会话超时或者被限制改组策略也没用的时候就这么解决
    关于CComboBox的使用,编辑项的文字
    vc 剪切板 unicode
    Linux 防火墙、SELinux 的开启和关闭
    MSSQLSERVER服务不能启动
  • 原文地址:https://www.cnblogs.com/hzm112567/p/2838426.html
Copyright © 2011-2022 走看看