Android数据保存之SharedPreference
package com.test.storage;
import android.app.Activity;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;
public class SharePreferenceDemo extends Activity{
private TextView et_name;
private TextView et_password;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
SharedPreferences sp = getSharedPreferences("info",MODE_PRIVATE);
//获取数据 第一个参数为存储的字符串的值,第二个参数是设置没取到对应的数据时,默认显示的值
String name = sp.getString("name", "");
String password = sp.getString("password", "");
et_name = (TextView) this.findViewById(R.id.name);
et_password = (TextView) this.findViewById(R.id.password);
et_name.setText(name);
et_password.setText(password);
}
public void click(View v){
//路径在data/data/程序标示包名/shared_prefs/
//不用为文件添加后缀名,添加也是无效的.数据是保存在xml中。
String name = et_name.getText().toString().trim();
String password = et_password.getText().toString().trim();
SharedPreferences sp = getSharedPreferences("info", MODE_PRIVATE);
//获取sp的编辑器
Editor editer = sp.edit();
//通过编辑器存放数据
editer.putString("name", name);
editer.putString("password", password);
//提交,保存的数据需要提交才能生效。
editer.commit();
}
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。