码迷,mamicode.com
首页 > 其他好文 > 详细

Properties类的简单运用

时间:2017-04-06 10:08:34      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:name   配置   内容   img   mat   store   写文件   userinfo   contains   

当需要用到 .properties 配置文件时,我们往往会用到Properties类创造途径来访问配置文件的内容.

示例:现在我创建了一个后缀为.properties的文件.(创建方式同创建记事本,将后缀改为.properties即可)

注意:.properties文件仅当放在项目目录下才有效

技术分享

 

程序中,为了访问这个文件,我需要写下面这些代码创建与文件的连接:

1:新建一个Properties 类的实例

Properties userInfomation = new Properties();

2:创建文件流并将流连接到实例上
InputStream is;
OutputStream os;
is = new FileInputStream("userInfo.properties");
os = new FileOutputStream("userInfo.properties", true);

3:读文件
userInfomation.load(is);

userInfomation.containsKey(userName);

userInfomation.getProperty("username");

4:写文件
// 将用户名和密码存储到内存中
userInfomation.setProperty(userName, userPassword);
// 将用户名和密码保存到文件中
userInfomation.store(os, null);

 

Properties类的简单运用

标签:name   配置   内容   img   mat   store   写文件   userinfo   contains   

原文地址:http://www.cnblogs.com/xiaoxi-/p/6671410.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!