Android開發學習---android下的數據持久化,保存數據到rom文件,android_data目錄下文件訪問的權限控制

一.需求

作一個相似QQ登陸似的app,將數據寫到ROM文件裏,並對數據進行回顯.java

二.截圖

登陸界面:android

 

 

文件瀏覽器,查看文件的保存路徑:/data/data/com.amos.datasave/files/LoginTest.txt------/data/data/(包名)/files/(文件名)web

導出的文件內容:瀏覽器

 

 

三.實現代碼

新建一個Android 工程.這裏我選擇的是2.1即API 7,進行開發的,其它都是默認下一步下一步便可.app

/datasave/res/layout/activity_main.xmleclipse

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_info" />

    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:numeric="integer" 
        android:inputType="text|number"
        android:hint="@string/et_type_name"
        android:id="@+id/et_name"
        />
    <EditText 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:inputType="textPassword" android:hint="@string/et_type_password"
        android:id="@+id/et_password"
        />

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
     >
        <Button
            android:id="@+id/bt_login"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginLeft="30dp"
            android:text="@string/bt_login" />
        
        <CheckBox 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginLeft="150dp"
            android:text="@string/cb_remember_password"     
            android:id="@+id/cb_password"                   
            />
        
        
    </RelativeLayout>

</LinearLayout>

這裏須要介紹的是android:hint屬性,做用是輸入框裏的顯示的提示信息.至關於web項目中的placeholder.ide

/datasave/res/values/strings.xmloop

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <string name="app_name">手機qq登陸save</string>
    <string name="action_settings">Settings</string>
    <string name="hello_info">請輸入帳號和密碼:</string>
    <string name="et_type_name">請輸入帳號</string>
    <string name="et_type_password">請輸入密碼</string>
    <string name="bt_login">登   錄</string>
    <string name="cb_remember_password">記住密碼</string>
    
</resources>

/datasave/src/com/amos/datasave/MainActivity.javathis

package com.amos.datasave;

import android.app.Activity;
import android.os.Bundle;
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 {

    String tag = "MainActivity";
    EditText et_name;//用戶名
    EditText et_password;//密碼
    Button bt_login;//登陸按鈕
    CheckBox cb_password;//單選框

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //初始化
        et_name = (EditText) this.findViewById(R.id.et_name);
        et_password = (EditText) this.findViewById(R.id.et_password);
        bt_login = (Button) this.findViewById(R.id.bt_login);
        cb_password = (CheckBox) this.findViewById(R.id.cb_password);
        
        //註冊點擊事件
        bt_login.setOnClickListener(this);

    }

    // 點擊事件
    @Override
    public void onClick(View v) {
        switch (v.getId()) {
        case R.id.bt_login:

            if (cb_password.isChecked()) {//若是單選框被選中了
                //保存數據到rom
                new savePasswordService(this).savePasswordToFile(et_name.getText().toString(), et_password.getText().toString());
                Toast.makeText(this, "保存數據成功!", Toast.LENGTH_SHORT).show();
            } else {
                Toast.makeText(this, "沒有保存數據!", Toast.LENGTH_SHORT).show();
            }
        }
    }
}

注:這裏主要注意的是進行判斷時使用switch語句能更使代碼結構更清晰.spa

/datasave/src/com/amos/datasave/savePasswordService.java

package com.amos.datasave;

import java.io.FileOutputStream;

import android.annotation.SuppressLint;
import android.content.Context;
import android.util.Log;

@SuppressLint("WorldWriteableFiles")
public class savePasswordService {
    private Context context;

    private String tag = "savePasswordService";

    public savePasswordService(Context context) {
        this.context = context;
    }

    public void savePasswordToFile(String name, String password) {
        // 這裏設置文件的權限
        String content = name + ":" + password;
        Log.d(tag, "設置文件的讀寫權限");
        try {
           FileOutputStream fileOutput = context.openFileOutput("LoginTestConfig.txt", Context.MODE_WORLD_READABLE | Context.MODE_WORLD_WRITEABLE);
            fileOutput.write(content.getBytes());
            fileOutput.flush();
            fileOutput.close();
        } catch (Exception e) {
            Log.d(tag, "設置文件的讀寫權限失敗!");
            e.printStackTrace();
        }

    }

}

注:這裏是將用戶名密碼寫到rom中的關鍵所在,主要調用了Context中的openFileOutput()方法,默認的權限是private,即其餘應用程序不可讀,這裏我設置了其它應用程序可讀寫.

 

 這裏新建一個工程叫dataread,其界面設計不變,這裏讀取到LoginTestConfig.txt,而後往裏面寫數據,實驗證實是OK的,寫入成功.

package com.amos.dataread;

import java.io.File;
import java.io.FileOutputStream;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;

public class MainActivity extends Activity {
    private String tag = "MainActivity";
    EditText et_name;
    EditText et_password;
    Button bt_login;
    CheckBox cb_remember;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        Log.d(tag, "準備讀取數據");
        File file = new File("/data/data/com.amos.datasave/files/LoginTestConfig.txt"); try {
            FileOutputStream fos =new FileOutputStream(file); fos.write("112233:pwd".getBytes()); fos.close();
            
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

}

 若是想要實現數據回顯,那麼能夠參考如下代碼:

package com.amos.dataread;

import java.io.ByteArrayOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.widget.Button;
import android.widget.CheckBox;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends Activity {
    private String tag = "MainActivity";
    EditText et_name;
    EditText et_password;
    Button bt_login;
    CheckBox cb_remember;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
       et_name = (EditText) this.findViewById(R.id.et_name); et_password = (EditText) this.findViewById(R.id.et_password);
        
        Log.d(tag, "準備讀取數據");
        File file = new File("/data/data/com.amos.datasave/files/LoginTestConfig.txt");
        try {
            FileInputStream fis= new FileInputStream(file);
            byte[] bytes = new byte[1024];
            
            ByteArrayOutputStream bos = new ByteArrayOutputStream();
            int len;
            while((len=fis.read(bytes))>0){
                bos.write(bytes, 0, len);
            }
            String result = new String(bos.toByteArray());
            Log.d(tag, result);
            Toast.makeText(this, "讀取數據成功!"+result, Toast.LENGTH_LONG);
            String name = result.split(":")[0];
            String password = result.split(":")[1];
            Log.d(tag,name);
            Log.d(tag,password);
           et_name.setText(name); et_password.setText(password);
        } catch (Exception e) {
            e.printStackTrace();
        }

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

}

效果:

這個是寫數據.

這個是讀數據,即將數據回顯.

 

 這裏必定要注意初始化EditText 輸入框,不然會一直報空指針的錯誤.以下所示:

05-21 16:36:23.127: D/MainActivity(31834): 123456:password
05-21 16:36:23.173: W/System.err(31834): java.lang.NullPointerException
05-21 16:36:23.183: W/System.err(31834):     at com.amos.dataread.MainActivity.onCreate(MainActivity.java:43)
05-21 16:36:23.193: W/System.err(31834):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
05-21 16:36:23.193: W/System.err(31834):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2459)
05-21 16:36:23.193: W/System.err(31834):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2512)
05-21 16:36:23.193: W/System.err(31834):     at android.app.ActivityThread.access$2200(ActivityThread.java:119)
05-21 16:36:23.193: W/System.err(31834):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1863)
05-21 16:36:23.193: W/System.err(31834):     at android.os.Handler.dispatchMessage(Handler.java:99)
05-21 16:36:23.203: W/System.err(31834):     at android.os.Looper.loop(Looper.java:123)
05-21 16:36:23.203: W/System.err(31834):     at android.app.ActivityThread.main(ActivityThread.java:4363)
05-21 16:36:23.213: W/System.err(31834):     at java.lang.reflect.Method.invokeNative(Native Method)
05-21 16:36:23.213: W/System.err(31834):     at java.lang.reflect.Method.invoke(Method.java:521)
05-21 16:36:23.213: W/System.err(31834):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
05-21 16:36:23.223: W/System.err(31834):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
05-21 16:36:23.223: W/System.err(31834):     at dalvik.system.NativeStart.main(Native Method)

同時要注意的是還有一個權限,是Context.MODE_APPEND

MODE_PRIVATE = 0x0000;

MODE_WORLD_READABLE = 0x0001;

MODE_WORLD_WRITEABLE = 0x0002;

MODE_APPEND = 0x8000;

定義APPEND時,數據會追加到文件中,若是隻是定義Context.MODE_APPEND,那麼其它應用程序是不能訪問此文件的,默認是私有的.

  

四.總結

1.eclipse中的logcat沒有輸出任何內容

Window-->Prefrences-->Android-->LogCat--->Switch to Java, priority at least VERBOSE

 

2.File explorer 中看不到內容

Window->show view -> other -> Android -> device 

看一下有沒有你的模擬器,若是有,那麼再點擊File explorer,這樣就能看到文件了.

再點擊pull.push 就能將文件傳出.傳入了.右上角的兩個小圖標.

相關文章
相關標籤/搜索