android文件存儲和SharedPreferences存儲的項目實例
更新時間:2022年05月17日 12:16:16 作者:相逢太短,莫等茶涼
本文主要介紹了android文件存儲和SharedPreferences存儲的項目實例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
該實例為課程作業(yè),請尊重勞動成果。
演示

【文件存儲】中查看設(shè)備保存的文件

目錄

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);
//點擊監(jiān)聽事件
loginBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
switch (view.getId()) {
case R.id.btn_login:
//當(dāng)點擊登錄按鈕時,獲取界面上輸入的 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
/**
* 實現(xiàn) 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,該文件只能被當(dāng)前程序讀寫
fos = context.openFileOutput("user.txt",
Context.MODE_PRIVATE);
//將數(shù)據(jù)轉(zhuǎn)換為字節(jié)碼的形式寫入 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");
//將輸入流對象中的數(shù)據(jù)轉(zhuǎn)換為字節(jié)碼的形式
byte[] buffer = new byte[fis.available()];
//通過 read()方法讀取字節(jié)碼中的數(shù)據(jù)
fis.read(buffer);
//將獲取的字節(jié)碼轉(zhuǎn)換為字符串
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
/**
* 實現(xiàn) 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;
}
}
到此這篇關(guān)于android文件存儲和SharedPreferences存儲的項目實例的文章就介紹到這了,更多相關(guān)android文件存儲和SharedPreferences存儲內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
Android開發(fā)教程之調(diào)用攝像頭功能的方法詳解
這篇文章主要介紹了Android調(diào)用攝像頭功能的方法,詳細(xì)分析了Android調(diào)用攝像頭功能的權(quán)限設(shè)置、功能代碼與實現(xiàn)步驟,需要的朋友可以參考下2016-06-06
Android App數(shù)據(jù)格式Json解析方法和常見問題
JSON數(shù)據(jù)格式,在Android中被廣泛運用于客戶端和網(wǎng)絡(luò)(或者說服務(wù)器)通信,非常有必要系統(tǒng)的了解學(xué)習(xí)。恰逢本人最近對json做了一個簡單的學(xué)習(xí),特此總結(jié)一下,以饗各位2014-03-03

