如何把properties中的文件key和value全部读出来?

 我来答
xiao_wgs69
2012-07-31
知道答主
回答量:35
采纳率:0%
帮助的人:10万
展开全部
这是根据key读出value值的(key必须先知道):
Properties props = new Properties();
try {
props.load(ConnectionUtils.class.getClassLoader()
.getResourceAsStream("properties文件"));
} catch (IOException e) {
e.printStackTrace();
}
if (props != null) {
url = props.getProperty("url");
driver = props.getProperty("driver");
username = props.getProperty("username");
password = props.getProperty("password");
}
另外不知道key的话这样写:
new BufferedReader(new FileInputStream("properties文件")).readLine()一行一行读取,再处理下是Ok了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
lmy_sk521
2012-07-31 · TA获得超过2272个赞
知道小有建树答主
回答量:1330
采纳率:73%
帮助的人:727万
展开全部
Properties prop = new Properties();
FileInputStream fis = new FileInputStream("c:/log4j.properties");
prop.load(fis);
prop.list(System.out);
Object[] objs = prop.keySet().toArray();
for(int i=0;i<objs.length;i++){
System.out.println("key:"+objs[i]+",value:"+prop.get(objs[i]));
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
sunwenhaiwindy
推荐于2016-07-06 · TA获得超过318个赞
知道小有建树答主
回答量:124
采纳率:0%
帮助的人:83.9万
展开全部
public class Config {
//Properties继承于HashMap key:value都是String类型
private Properties table=new Properties();
public Config(String file){
try{
table.load(new FileInputStream(file));
}catch (IOException e){
e.printStackTrace();
throw new RuntimeException(e);
}
}
public int getInt(String key){
return Integer.parseInt(table.getProperty(key));
}
public String getString(String key){
return table.getProperty(key);
}
public double getDouble(String key){
return Double.parseDouble(table.getProperty(key));
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式