一般用来存放一些标记性的数据,一些设置信息。
*********使用sharedPreferences存储数据
1.通过Context对象创建一个SharedPreference对象
//name:sharedpreference文件的名称 mode:文件的操作模式
SharedPreferences sharedPreferences = context.getSharedPreferences("userinfo.txt", Context.MODE_PRIVATE);
2.通过sharedPreferences对象获取一个Editor对象
Editor editor = sharedPreferences.edit();
3.往Editor中添加数据
editor.putString("username", username);
editor.putString("password", password);
4.提交Editor对象
editor.commit();
*********使用sharedPreferences读取数据
1.通过Context对象创建一个SharedPreference对象
SharedPreferences sharedPreferences = context.getSharedPreferences("userinfo.txt", Context.MODE_PRIVATE);
2.通过sharedPreference获取存放的数据
//key:存放数据时的key defValue: 默认值,根据业务需求来写
String username = sharedPreferences.getString("username", "");
String password = sharedPreferences.getString("password", "");
通过PreferenceManager可以获取一个默认的sharepreferences对象
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
android成长之路,SharedPreferences
最新推荐文章于 2024-11-02 23:03:46 发布
本文介绍如何使用SharedPreferences在Android应用中存储和读取简单的键值对数据。通过具体步骤演示了如何创建SharedPreferences对象,并利用Editor对象进行数据的写入与提交。此外,还展示了如何从SharedPreferences对象中读取已存储的数据。
摘要由CSDN通过智能技术生成