美文网首页
读取.properties文件

读取.properties文件

作者: 流浪骑士 | 来源:发表于2015-12-17 13:27 被阅读65次

环境:eclipse
步骤一:
创建Maven项目
步骤二:
创建PropertiesUtil类:

package Tool;

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

public class PropertiesUtil{

    //输出name属性文件内容
    public static void outputvalusofProperty(String name) throws IOException{
        InputStream in=ClassLoader.getSystemResourceAsStream(name);
        Properties pro =new Properties();
        pro.load(in);
        
        for (String key:pro.stringPropertyNames()){
            System.out.println("key:"+key+" "+"value:"+pro.getProperty(key));
        }
    }
    
    //获取filename属性文件中,关键字为key的值
    public static String getProperty(String filename,String key) throws IOException{
        InputStream in=ClassLoader.getSystemResourceAsStream(filename);
        Properties pro =new Properties();
        pro.load(in);
        
        if(pro.containsKey(key))
            return pro.getProperty(key);
        else 
            return null;
    }
}

相关文章

网友评论

      本文标题:读取.properties文件

      本文链接:https://www.haomeiwen.com/subject/zplphttx.html