布局的代碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<!-- 使用者名稱的布局 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/view_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_name" />
<EditText
android:id="@+id/edit_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPersonName" >
<requestFocus />
</EditText>
</LinearLayout>
<!-- 密碼布局 -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/view_pass"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_pass" />
<EditText
android:id="@+id/edit_pass"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="textPassword">
<requestFocus />
</EditText>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<Button
android:id="@+id/btn_login"
android:layout_marginLeft="0dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_login" />
<CheckBox
android:id="@+id/cbx_rember"
android:layout_marginLeft="100dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text_rember" />
</LinearLayout>
</LinearLayout>
Value裡面的代碼:<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">lession02-file</string>
<string name="action_settings">Settings</string>
<string name="hello_world">Hello world!</string>
<string name="text_name">使用者名稱:</string>
<string name="text_pass">密碼:</string>
<string name="text_login">登陸</string>
<string name="text_rember">記住密碼</string>
</resources>
:
logActivi中的代碼:
package com.example.file;
import java.io.IOException;
import java.util.Map;
import www.csdn.net.service.FileService;
import android.app.Activity;
import android.os.Bundle;
import android.text.TextUtils;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;
public class LoginActivity extends Activity {
// 聲明 擷取的使用者名稱與密碼的組件
public EditText edit_name, edit_pass;
// 聲明登陸按鈕對象
public Button btn_login;
// 聲明CheckBox組件對象
public CheckBox box_remember;
//建立業務對象
public FileService fileService;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 設定顯示視圖
setContentView(R.layout.activity_login);
//執行個體化業務對象
fileService = new FileService(this);
// 根據id名稱擷取相應組件對象
edit_name = (EditText) findViewById(R.id.edit_name);
edit_pass = (EditText) findViewById(R.id.edit_pass);
btn_login = (Button) findViewById(R.id.btn_login);
box_remember = (CheckBox) findViewById(R.id.cbx_rember);
// 給按鈕註冊事件
btn_login.setOnClickListener(new MyOnClickListener());
//回顯資料
Map<String, String> map = null;
try {
map = fileService.readFile("private.txt");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
if(map!=null){
edit_name.setText(map.get("name"));
edit_pass.setText(map.get("pass"));
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.login, menu);
return true;
}
// 內部類
class MyOnClickListener implements View.OnClickListener {
@Override
public void onClick(View v) {
int id = v.getId();
// 判斷當前點擊組件是否是 按鈕
if (id == btn_login.getId()) {
// 擷取使用者名稱與密碼
String name = edit_name.getText().toString();
String pass = edit_pass.getText().toString();
// 判斷使用者名稱與密碼是否為空白
if (TextUtils.isEmpty(name) || TextUtils.isEmpty(pass)) {
Toast.makeText(LoginActivity.this, "使用者名稱或者密碼不可為空",
Toast.LENGTH_LONG).show();
return;
} else {
// 如果記住密碼勾選上了
if (box_remember.isChecked()) {
// 進行儲存
//調用業務對象的業務方法
try {
LoginActivity.this.fileService.saveToRom(name, pass, "private.txt");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Toast.makeText(LoginActivity.this, "使用者名稱和密碼需要儲存",
Toast.LENGTH_LONG).show();
} else {
// 不儲存
Toast.makeText(LoginActivity.this, "使用者名稱和密碼不需要儲存",
Toast.LENGTH_LONG).show();
}
}
}
}
}
}
Service;
package www.csdn.net.service;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
import www.csdn.net.tools.StreamTools;
import android.content.Context;
public class FileService {
// 內容相關的對象
public Context context;
public FileService(Context context) {
this.context = context;
}
/**
* 往手機記憶體上儲存使用者名稱與密碼的操作
* @param name
* @param pass
* @param fileName
* @return
* @throws IOException
*/
public boolean saveToRom(String name,String pass,String fileName) throws IOException{
try {
// 通過openFileOutput()方法擷取一個檔案的輸出資料流對象
FileOutputStream fos = context.openFileOutput(fileName,Context.MODE_PRIVATE);
// 拼接使用者名稱與密碼
String result = name+":"+pass;
fos.write(result.getBytes());
fos.flush();
fos.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
return false;
}
return true;
}
//讀取資料
public Map<String,String> readFile(String fileName) throws IOException{
Map<String,String> map=null;// new HashMap<String, String>();
try {
FileInputStream fis = context.openFileInput(fileName);
String value = StreamTools.getValue(fis);
String values[] = value.split(":");
if(values.length>0){
map = new HashMap<String, String>();
map.put("name", values[0]);
map.put("pass", values[1]);
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return map;
}
}
調用的一個工具:
package www.csdn.net.tools;
import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.IOException;
public class StreamTools {
public static String getValue(FileInputStream fis) throws IOException{
//位元組的輸出資料流對象
ByteArrayOutputStream stream = new ByteArrayOutputStream();
byte [] buffer = new byte[1024];
int length=1;
while ((length = fis.read(buffer)) != -1) {
stream.write(buffer, 0, length);
}
stream.flush();
stream.close();
String value= stream.toString();
return value;
}
}
在工裡面 Window裡面找到File Explorer 顯示到控制台:
data- data-com.example-files- private.txt
顯示的數局:aaa 123