• 提供一些常用的属性文件相关的方法


    package com.opslab.util;


    import org.apache.log4j.Logger;

    import java.io.*;
    import java.util.Enumeration;
    import java.util.HashMap;
    import java.util.Map;
    import java.util.Properties;

    /**
    * 提供一些常用的属性文件相关的方法
    */
    public final class PropertiesUtil {
    public static Logger logger = Logger.getLogger(PropertiesUtil.class);

    /**
    * 从系统属性文件中获取相应的值
    *
    * @param key key
    * @return 返回value
    */
    public final static String key(String key) {
    return System.getProperty(key);
    }

    /**
    * 根据Key读取Value
    *
    * @param filePath 属性文件
    * @param key 需要读取的属性
    */
    public final static String GetValueByKey(String filePath, String key) {
    Properties pps = new Properties();
    try (InputStream in = new BufferedInputStream(new FileInputStream(filePath))) {
    pps.load(in);
    return pps.getProperty(key);
    } catch (IOException e) {
    e.printStackTrace();
    return null;
    }
    }

    public final static Map<String,String> properties(InputStream in){
    Map<String,String> map = new HashMap<>();
    Properties pps = new Properties();
    try {
    pps.load(in);
    } catch (IOException e) {
    logger.error("load properties error:"+e.getMessage());
    }
    Enumeration en = pps.propertyNames();
    while (en.hasMoreElements()) {
    String strKey = (String) en.nextElement();
    String strValue = pps.getProperty(strKey);
    map.put(strKey,strValue);
    }
    return map;
    }
    /**
    * 读取Properties的全部信息
    *
    * @param filePath 读取的属性文件
    * @return 返回所有的属性 key:value<>key:value
    */
    public final static Map<String,String> GetAllProperties(String filePath) throws IOException {
    Map<String,String> map = new HashMap<>();
    Properties pps = new Properties();
    try (InputStream in = new BufferedInputStream(new FileInputStream(filePath))) {
    return properties(in);
    }catch (IOException e){
    logger.error("load properties error");
    }
    return map;
    }

    /**
    * 写入Properties信息
    *
    * @param filePath 写入的属性文件
    * @param pKey 属性名称
    * @param pValue 属性值
    */
    public final static void WriteProperties(String filePath, String pKey, String pValue) throws IOException {
    Properties props = new Properties();

    props.load(new FileInputStream(filePath));
    // 调用 Hashtable 的方法 put,使用 getProperty 方法提供并行性。
    // 强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。
    OutputStream fos = new FileOutputStream(filePath);
    props.setProperty(pKey, pValue);
    // 以适合使用 load 方法加载到 Properties 表中的格式,
    // 将此 Properties 表中的属性列表(键和元素对)写入输出流
    props.store(fos, "Update '" + pKey + "' value");

    }

    }

  • 相关阅读:
    LRESULT CALLBACK WndProc 窗口程序的 重点
    vs2012打开低版本项目时 出现vs2012警告未能加载包“visual c++ package 解决办法
    const char*, char const*, char*const的区别
    js手机短信按钮倒计时
    控件案例
    laydate.js时间选择
    jquery.reveal弹出框
    表格内容控制(换行、不换行、隐藏)
    sql 把特定数据排在最前面
    jquery选择器(可见对象,不可见对象) +判断,对象(逆序)
  • 原文地址:https://www.cnblogs.com/chinaifae/p/10254862.html
Copyright © 2020-2023  润新知