博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android -- SharedPreferences存储信息
阅读量:6006 次
发布时间:2019-06-20

本文共 737 字,大约阅读时间需要 2 分钟。

背景                                                                                            

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);

上面的是读数据。

我是天王盖地虎的分割线                                                                 

源代码:

savefile_share.zip

 

 

 

 

转载请注明出处:

你可能感兴趣的文章
python 自动化测试HTTP接口
查看>>
常用排序算法
查看>>
题解——loj6280 数列分块入门4 (分块)
查看>>
Nginx配置文件nginx.conf详解
查看>>
Ubuntu下实现socks代理转http代理
查看>>
使用PL/SQL能查询oracle中数据,在for update 语句中一直卡住
查看>>
05机器学习实战之Logistic 回归scikit-learn实现
查看>>
libevent evbuffer参考文章
查看>>
用python爬取app照片
查看>>
ASP.NET状态管理
查看>>
软件工程中的瀑布模型和敏捷模型
查看>>
不做7件事,提高生产力
查看>>
PS小技巧之完美抠图
查看>>
一个Oracle触发器的示例
查看>>
《Photoshop CS5 The Missing Manual》 - 书摘精要
查看>>
HSQLDB 安装与使用
查看>>
Oracle 字符串分割排序冒泡算法
查看>>
深度学习与神经网络
查看>>
李小龙教给我们的敏捷开发之道
查看>>
windows 程序设计的一些总结
查看>>