Properties属性文件

/* 转载数据 */
// 创建Properties对象
Properties properties = new Properties();
try {
    // 获得文件流
    FileInputStream stream = this.openFileInput("config.cfg");
    // 读取文件内容
    properties.load(stream);
    // 获得数据
    String key = properties.get("key").toString();
}
catch(FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
catch(IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
/* 保存数据 */
// 创建Properties对象
Properties properties1 = new Properties();
// 存储数据
properties1.put("key", "values");
try {
    // 获得文件流
    FileOutputStream stream = this.openFileOutput("config.cfg",
    Context.MODE_WORLD_WRITEABLE);
    // 保存数据
    properties1.store(stream, "");
}
catch(FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}
catch(IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

你可能感兴趣的:(properties,Stream,String,存储)