android文件存儲和SharedPreferences存儲的項目實例
該實例為課程作業,請尊重勞動成果。
演示
【文件存儲】中查看設備保存的文件
目錄
activity_main
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#E6E6E6" android:orientation="vertical" android:padding="10dp" tools:context=".MainActivity"> <ImageView android:layout_width="70dp" android:layout_height="70dp" android:layout_centerHorizontal="true" android:layout_gravity="center_horizontal" android:layout_marginTop="30dp" android:src="@drawable/head" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="15dp" android:background="@android:color/white" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" android:text="賬號:" android:textColor="#000" android:textSize="20sp" /> <EditText android:id="@+id/et_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:background="@null" android:padding="10dp" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:background="@android:color/white" android:orientation="horizontal"> <TextView android:id="@+id/tv_password" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10dp" android:text="密碼:" android:textColor="#000" android:textSize="20sp" /> <EditText android:id="@+id/et_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:background="@null" android:inputType="textPassword" android:padding="10dp" /> </LinearLayout> <Button android:id="@+id/btn_login" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="25dp" android:background="#3C8DC4" android:text="登錄" android:textColor="@android:color/white" android:textSize="20sp" /> </LinearLayout>
MainActivity
/** * 文件存儲和SharedPreferences存儲實例 */ public class MainActivity extends AppCompatActivity { private EditText et_account, et_password; //賬號輸入框、密碼輸入框 private Button loginBtn; //登錄按鈕 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initView(); } private void initView() { et_account = findViewById(R.id.et_account); et_password = findViewById(R.id.et_password); loginBtn = findViewById(R.id.btn_login); //點擊監聽事件 loginBtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { switch (view.getId()) { case R.id.btn_login: //當點擊登錄按鈕時,獲取界面上輸入的 QQ 賬號和密碼 String account = et_account.getText().toString().trim(); String password = et_password.getText().toString(); //檢驗輸入的賬號和密碼是否為空 if (TextUtils.isEmpty(account)) { Toast.makeText(getApplicationContext(), "請輸入 QQ 賬號", Toast.LENGTH_SHORT).show(); return; } if (TextUtils.isEmpty(password)) { Toast.makeText(getApplicationContext(), "請輸入密碼", Toast.LENGTH_SHORT).show(); return; } //文件存儲 //saveOfFile(account,password); //SharedPreferences存儲 saveOfSharedPreferences(account,password); break; } } }); } //SharedPreferences存儲 private void saveOfSharedPreferences(String account, String password) { //獲取 QQ 賬號和密碼信息 SharedPreferences userInfo=SPSaveQQ.getUserInfo(getApplicationContext()); if (userInfo.getString("username", "") != null&&userInfo.getString("pwd", "") != null) { String username = userInfo.getString("username", "");//讀取賬號 String pwd = userInfo.getString("pwd", "");//讀取密碼 Log.i("user", "讀取用戶信息"); Log.i("user", "username:" + username + ", pwd:" + pwd); if (username.equals(account) && pwd.equals(password)) { Toast.makeText(getApplicationContext(), username+"登錄成功!", Toast.LENGTH_SHORT).show(); }else { Log.i("user", "用戶或密碼錯誤!"); //保存用戶信息 boolean isSaveSuccess = SPSaveQQ.saveUserInfo(getApplicationContext(), account, password); if (isSaveSuccess) { Toast.makeText(getApplicationContext(), "保存成功!", Toast.LENGTH_SHORT).show(); } else { Toast.makeText(getApplicationContext(), "保存失敗!", Toast.LENGTH_SHORT).show(); } } }else{ //保存用戶信息 boolean isSaveSuccess = SPSaveQQ.saveUserInfo(getApplicationContext(), account, password); if (isSaveSuccess) { Toast.makeText(getApplicationContext(), "保存成功!", Toast.LENGTH_SHORT).show(); } else { Toast.makeText(getApplicationContext(), "保存失敗!", Toast.LENGTH_SHORT).show(); } } } //文件存儲 private void saveOfFile(String account, String password) { //獲取 QQ 賬號和密碼信息 Map<String, String> userInfo = FileSaveQQ.getUserInfo(getApplicationContext()); if (userInfo != null) { //將獲取的賬號顯示到界面上 et_account.setText(userInfo.get("account")); //將獲取的密碼顯示到界面上 et_password.setText(userInfo.get("password")); Toast.makeText(getApplicationContext(), userInfo.get("account")+"登錄成功!", Toast.LENGTH_SHORT).show(); }else{ //保存用戶信息 boolean isSaveSuccess = FileSaveQQ.saveUserInfo(getApplicationContext(), account, password); if (isSaveSuccess) { Toast.makeText(getApplicationContext(), "保存成功!", Toast.LENGTH_SHORT).show(); } else { Toast.makeText(getApplicationContext(), "保存失敗!", Toast.LENGTH_SHORT).show(); } } } }
FileSaveQQ
/** * 實現 QQ 賬號與密碼的文件存取與讀取功能 */ public class FileSaveQQ { /** * 保存用戶信息 * @param context * @param account 賬號 * @param password 密碼 * @return */ public static boolean saveUserInfo(Context context, String account, String password) { //文件的輸出流對象 FileOutputStream fos = null; try { //獲取文件的輸出流對象 fos,該文件隻能被當前程序讀寫 fos = context.openFileOutput("user.txt", Context.MODE_PRIVATE); //將數據轉換為字節碼的形式寫入 user.txt 文件中 fos.write((account + ":" + password).getBytes()); return true; } catch (Exception e) { e.printStackTrace(); return false; }finally { try { if(fos != null){ fos.close(); } } catch (IOException e) { e.printStackTrace(); } } } /** * 從 user.txt 文件中獲取存儲的用戶信息 * @param context * @return */ public static Map<String, String> getUserInfo(Context context) { String content = ""; //文件的輸入流對象 FileInputStream fis = null; try { //獲取文件的輸入流對象 fis fis = context.openFileInput("user.txt"); //將輸入流對象中的數據轉換為字節碼的形式 byte[] buffer = new byte[fis.available()]; //通過 read()方法讀取字節碼中的數據 fis.read(buffer); //將獲取的字節碼轉換為字符串 content = new String(buffer); Map<String, String> userMap = new HashMap<String, String>(); String[] infos = content.split(":"); //放入賬號密碼 userMap.put("account", infos[0]); userMap.put("password", infos[1]); Log.i("user", "讀取用戶信息"); Log.i("user", "account:" + infos[0] + ", password:" + infos[1]); return userMap; } catch (Exception e) { e.printStackTrace(); return null; } finally { try { if (fis != null) { fis.close(); } } catch (IOException e) { e.printStackTrace(); } } } }
SPSaveQQ
/** * 實現 QQ 賬號與密碼SharedPreferences的存取與讀取功能 */ public class SPSaveQQ { /** * 保存用戶信息 */ public static boolean saveUserInfo(Context context, String account, String password){ SharedPreferences sharedPreferences = null; try { sharedPreferences = context.getSharedPreferences("user", Context.MODE_PRIVATE); SharedPreferences.Editor editor = sharedPreferences.edit();//獲取編輯器 editor.putString("username", account); editor.putString("pwd", password); editor.commit();//提交修改 return true; }catch (Exception e){ e.printStackTrace(); return false; }finally { if(sharedPreferences != null){ return true; } return false; } } /** * 讀取用戶信息 */ public static SharedPreferences getUserInfo(Context context){ SharedPreferences userInfo = context.getSharedPreferences("user", Context.MODE_PRIVATE); return userInfo; } }
到此這篇關於android文件存儲和SharedPreferences存儲的項目實例的文章就介紹到這瞭,更多相關android文件存儲和SharedPreferences存儲內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Android開發文件存儲實例
- Android 使用 SharedPreferences 保存少量數據的實現代碼
- Android studio 利用共享存儲進行用戶的註冊和登錄驗證功能
- Android 簡單的實現滑塊拼圖驗證碼功能
- Android AlertDialog的幾種用法詳解