用Java自带的Properties类访问配置文件

Properties props  =   new  Properties();
InputStream in 
=  Main. class .getResourceAsStream( " p.properties " );   // p.properties文件与当前类同包
props.load(in);   // 将配置文件内容加载到Properties对象中
BufferedReader input  =   new  BufferedReader( new  InputStreamReader(System.in));   // 从屏幕接收用户输入
String key  =  input.readLine();
System.out.println(props.get(key);

posted on 2009-10-21 10:54 Rick Qin 阅读(245) 评论(0)  编辑  收藏 所属分类: Java


只有注册用户登录后才能发表评论。


网站导航:
 

导航

<2009年10月>
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567

统计

留言簿(2)

随笔分类(3)

随笔档案(6)

文章分类

文章档案(3)

搜索

最新随笔

最新评论

阅读排行榜

评论排行榜