android 登陆案例_最终版本 sharedpreference

时间:2022-05-26 16:05:29

xml  与之前的登陆案例相同

java代码:

 package com.itheima.login;

 import java.util.Map;

 import com.itheima.login.util.UserInfoUtil;
import com.itheima.login_shared.R; import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast; public class MainActivity extends Activity implements OnClickListener{ private EditText et_username;
private EditText et_password;
private CheckBox cb_rem;
private Button bt_login;
private Context mContext; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mContext = this;
et_username = (EditText) findViewById(R.id.et_username);
et_password = (EditText) findViewById(R.id.et_password);
cb_rem = (CheckBox) findViewById(R.id.cb_rem);
bt_login = (Button) findViewById(R.id.bt_login);
//b.设置按钮的点击事件
bt_login.setOnClickListener(this); //f.回显用户名密码 ??
Map<String, String> map = UserInfoUtil.getUserInfo_android(mContext);//获取用户名密码
if(map != null){
String username = map.get("username");
String password = map.get("password");
et_username.setText(username);//设置用户名
et_password.setText(password);
cb_rem.setChecked(true);//设置复选框选中状态
} } private void login(){ //c.在onclick方法中,获取用户输入的用户名密码和是否记住密码 String username = et_username.getText().toString().trim();
String password = et_password.getText().toString().trim();
boolean isrem = cb_rem.isChecked();
//d.判断用户名密码是否为空,不为空请求服务器(省略,默认请求成功)
if(TextUtils.isEmpty(username) || TextUtils.isEmpty(password)){
Toast.makeText(mContext, "用户名密码不能为空", Toast.LENGTH_SHORT).show();
return ;
} //请求服务器,后面讲。。。。。。。。。。 //e.判断是否记住密码,如果记住,将用户名密码保存本地。????
if(isrem){
boolean result = UserInfoUtil.saveUserInfo_android(mContext,username,password);
if(result){
Toast.makeText(mContext, "用户名密码保存成功", Toast.LENGTH_SHORT).show();
}else{
Toast.makeText(mContext, "用户名密码保存失败", Toast.LENGTH_SHORT).show();
} }else{
Toast.makeText(mContext, "无需保存", Toast.LENGTH_SHORT).show();
} } @Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.bt_login:
login();
break; default:
break;
}
} }

包中代码:

 package com.itheima.login.util;

 import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map; import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.preference.PreferenceManager; public class UserInfoUtil { //保存用户名密码
public static boolean saveUserInfo_android(Context context,String username, String password) { try{ //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(); return true;
}catch (Exception e) {
e.printStackTrace();
} return false;
} //获取用户名密码
public static Map<String ,String> getUserInfo_android(Context context){ try{ //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", ""); HashMap<String, String> hashMap = new HashMap<String ,String>();
hashMap.put("username",username);
hashMap.put("password", password);
return hashMap; }catch (Exception e) {
e.printStackTrace();
}
return null; } }

老师笔记

SharedPreferences第二种存储方式(重点)
     主要用于

(1)往SharedPreferences保存数据
        
     public void save(View v){
        
        String data = et.getText().toString().trim();
        if(TextUtils.isEmpty(data)){
            Toast.makeText(this, "请输入数据", 0).show();
            return;
        }else{
            
            //得到一个SharedPreferences
            SharedPreferences sp = this.getSharedPreferences("info", Context.MODE_PRIVATE);
            //SharedPreferences提供了一个编辑器,帮助我们保存数据
            Editor editor = sp.edit();
            
            editor.putString("data", data);
            
            //把数据保存到SharedPreferences中
            editor.commit();

}
    }

(2)从SharedPreferences读取数据
    public String readData(){
        
    
        String data;
        try {
            //得到一个SharedPreferences
            SharedPreferences sp = this.getSharedPreferences("info", Context.MODE_PRIVATE);
            //根据参数名称得到数据
            data = sp.getString("data", null);
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
            data = "";
        }
        
        return data;
        
    }