Android -- SharedPreferences存储信息_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > Android -- SharedPreferences存储信息

Android -- SharedPreferences存储信息

 2014/5/18 13:24:31  我爱物联网  博客园  我要评论(0)
  • 摘要:背景SharedPreferences我觉得是最容易上手的,以xml方式存储。代码publicclassshare{publicstaticvoidsaveInfo(Contextcontext,Stringusername,Stringpassword){SharedPreferencessp=context.getSharedPreferences("config",context.MODE_PRIVATE);Editoreditor=sp.edit();editor.putString
  • 标签:android Preference 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://www.cnblogs.com/yydcdut/p/3720656.html

发表评论
用户名: 匿名