Android -- SharedPreferences存储信息
背景
SharedPreferences我觉得是最容易上手的,以xml方式存储。
代码
public class share { public static void saveInfo(Context context,String username,String password) { SharedPreferences sp = context.getSharedPreferences("config", context.MODE_PRIVATE); Editor editor = sp.edit(); editor.putString("username", username); editor.putString("password", password); editor.commit(); } }
主要就是开启edit,然后写数据,然后commit。
SharedPreferences sp = getSharedPreferences("config", MODE_PRIVATE); String username = sp.getString("username", ""); String password = sp.getString("password", ""); usernameText.setText(username); passwordText.setText(password);
上面的是读数据。
我是天王盖地虎的分割线
源代码:http://pan.baidu.com/s/1dD1Qx01
savefile_share.zip
作者:我爱物联网
出处:http://yydcdut.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
出处:http://yydcdut.cnblogs.com/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。