Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> android(9)_數據存儲與訪問3_scard

android(9)_數據存儲與訪問3_scard

編輯:關於Android編程

使用Activity的openFileOutput()方法保存文件,文件是存放在手機空間上,一般手機的存儲空間不是很大,存放些小文件還行,如果要存放像視頻這樣的大文件,是不可行的。對於像視頻這樣的大文件,我們可以把它存放在SDCard。 SDCard是干什麼的?你可以把它看作是移動硬盤或U盤。


在模擬器中使用SDCard,你需要先創建一張SDCard卡(當然不是真的SDCard,只是鏡像文件)。創建SDCard可以在Eclipse創建模擬器時隨同創建,也可以使用DOS命令進行創建,如下:
在Dos窗口中進入android SDK安裝路徑的tools目錄,輸入以下命令創建一張容量為2G的SDCard,文件後綴可以隨便取,建議使用.img:
mksdcard 2048M D:\AndroidTool\sdcard.img

在程序中訪問SDCard,你需要申請訪問SDCard的權限。
在AndroidManifest.xml中加入訪問SDCard的權限如下:
<!-- 在SDCard中創建與刪除文件權限 -->
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
<!-- 往SDCard寫入數據權限 -->

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

要往SDCard存放文件,程序必須先判斷手機是否裝有SDCard,並且可以進行讀寫。

注意:訪問SDCard必須在AndroidManifest.xml中加入訪問SDCard的權限
if(Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)){
         File sdCardDir = Environment.getExternalStorageDirectory();//獲取SDCard目錄
         File saveFile = new File(sdCardDir, “itcast.txt”);
FileOutputStream outStream = new FileOutputStream(saveFile);
outStream.write("趙雅智博客".getBytes());
outStream.close();
}
Environment.getExternalStorageState()方法用於獲取SDCard的狀態,如果手機裝有SDCard,並且可以進行讀寫,那麼方法返回的狀態等於Environment.MEDIA_MOUNTED。
Environment.getExternalStorageDirectory()方法用於獲取SDCard的目錄,當然要獲取SDCard的目錄,你也可以這樣寫:
File sdCardDir = new File("/sdcard"); //獲取SDCard目錄
File saveFile = new File(sdCardDir, "itcast.txt");
//上面兩句代碼可以合成一句: File saveFile = new File("/sdcard/itcast.txt");
FileOutputStream outStream = new FileOutputStream(saveFile);
outStream.write("趙雅智test".getBytes());
outStream.close();

 

 

 


實例login


AndroidManifest.xml
[html] view plaincopyprint?
<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
    package="com.example.lession03_login_sd" 
    android:versionCode="1" 
    android:versionName="1.0" > 
 
    <uses-sdk 
        android:minSdkVersion="8" 
        android:targetSdkVersion="17" /> 
    <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/> 
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 
 
    <application 
        android:allowBackup="true" 
        android:icon="@drawable/ic_launcher" 
        android:label="@string/app_name" 
        android:theme="@style/AppTheme" > 
        <activity 
            android:name="com.example.lession03_login_sd.LoginActivity" 
            android:label="@string/app_name" > 
            <intent-filter> 
                <action android:name="android.intent.action.MAIN" /> 
 
                <category android:name="android.intent.category.LAUNCHER" /> 
            </intent-filter> 
        </activity> 
    </application> 
 
</manifest> 

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.lession03_login_sd"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="17" />
    <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>
    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.lession03_login_sd.LoginActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

 \
 

布局文件
<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/login_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/login_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="textPersonName" > 
 
            <requestFocus /> 
        </EditText> 
    </LinearLayout> 
 
        <LinearLayout 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" > 
 
        <RadioGroup 
            android:id="@+id/radioGroup1" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:orientation="horizontal" 
            tools:ignore="UselessParent" > 
 
            <RadioButton 
                android:id="@+id/radio_rom" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:checked="true" 
                android:text="@string/login_rom" /> 
 
            <RadioButton 
                android:id="@+id/radio_sp" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:text="@string/login_sp" /> 
 
            <RadioButton 
                android:id="@+id/radio_sd" 
                android:layout_width="wrap_content" 
                android:layout_height="wrap_content" 
                android:text="@string/login_sd" /> 
        </RadioGroup> 
 
    </LinearLayout> 
    <LinearLayout 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content" > 
 
        <Button 
            android:id="@+id/button_login" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:text="@string/login_login" /> 
 
        <CheckBox 
            android:id="@+id/check_remember" 
            android:layout_width="wrap_content" 
            android:layout_height="wrap_content" 
            android:layout_marginLeft="100dp" 
            android:text="@string/login_remember" /> 
    </LinearLayout> 
 
 
 
</LinearLayout> 

 

 

\\ \


strings.xml
<?xml version="1.0" encoding="utf-8"?> 
<resources> 
 
    <string name="app_name">lession03_login</string> 
    <string name="action_settings">Settings</string> 
    <string name="hello_world">Hello world!</string> 
    <string name="login_name">用戶名</string> 
    <string name="login_pass">密碼</string> 
    <string name="login_login">登陸</string> 
    <string name="login_remember">記住密碼</string> 
    <string name="login_rom">rom存儲</string> 
    <string name="login_sp">sp存儲</string> 
    <string name="login_sd">sd存儲</string> 
 
</resources> 

字節輸出流對象:StreamTools.java
package com.example.lession02_login.util; 
 
import java.io.ByteArrayOutputStream; 
import java.io.FileInputStream; 
 
public class StreamTools { 
 
    public static String getValue(FileInputStream fis) throws Exception { 
        //字節的輸出流對象 
        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; 
    } 

 


LoginService.java
package com.example.lession03_login_sd.service;


import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.util.HashMap;
import java.util.Map;


import com.example.lession03_login_sd.util.StreamTools;


import android.content.Context;
import android.content.SharedPreferences;
import android.content.SharedPreferences.Editor;
import android.os.Environment;


public class LoginService {


// 上下文對象
public Context context;


// 通過上下文對象傳過來
public LoginService(Context context) {
super();
this.context = context;
}


/**
* 采用sharedPreferences方法
*
* @param name
* @param pass
* @param fileName
* @return
*/
public boolean saveToSDCard(String name, String pass, String fileName) {
// 判斷是否有sdcard
if (Environment.getExternalStorageState().equals(
Environment.MEDIA_MOUNTED)) {
// sd寫入數據
// 獲取SDCard目錄
File sdCardDir = Environment.getExternalStorageDirectory();
// 根據目錄及創建文件的名稱,創建文件
File saveFile = new File(sdCardDir, fileName);
// 寫數據 輸出來
try {
FileOutputStream outStream = new FileOutputStream(saveFile);
String result = name+":"+pass;

outStream.write(result.getBytes());
outStream.flush();
outStream.close();
} catch (Exception e) {
e.printStackTrace();
return false;
}


}
return true;

 

}
// 讀取數據
public Map<String, String> readFileSDcard(String fileName) {
Map<String, String> map = null;// new HashMap<String, String>();


try {
//第一步:獲取SDcard目錄文件
File sdcardDir = Environment.getExternalStorageDirectory();
//第二步:根據sdcard目錄及文件名稱 創建文件對象
File file = new File(sdcardDir,fileName);
//第三步:根據文件對象創建文件的輸入流
FileInputStream fis = new FileInputStream(file);
//第四步:利用StreamTools工具 獲取文件中的內容
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 (Exception e) {
e.printStackTrace();
}
return map;
}
}

LoginActivity.java
package com.example.lession03_login_sd;


import java.util.Map;


import com.example.lession03_login_sd.R;
import com.example.lession03_login_sd.service.LoginService;


import android.os.Bundle;
import android.app.Activity;
import android.content.Context;
import android.content.SharedPreferences;
import android.text.TextUtils;
import android.view.Menu;
import android.view.View;
import android.widget.Button;
import android.widget.Checkable;
import android.widget.EditText;
import android.widget.RadioButton;
import android.widget.Toast;


public class LoginActivity extends Activity {


// 聲明獲取的用戶名和密碼
private EditText edit_name, edit_pass;
// 聲明登陸按對象
private Button btn_login;
// 聲明復選框組件對象
private Checkable box_remember;
// 聲明業務對象
private LoginService loginService;


// 聲明保存方式按鈕
private RadioButton radio_rom, radio_sp, radio_sd;


@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 設置顯示視圖
setContentView(R.layout.activity_login);
// 實例化業務對像
loginService = new LoginService(this);


// 根據id名獲取相應組件對象
edit_name = (EditText) findViewById(R.id.edit_name);
edit_pass = (EditText) findViewById(R.id.edit_pass);
btn_login = (Button) findViewById(R.id.button_login);
box_remember = (Checkable) findViewById(R.id.check_remember);


radio_rom = (RadioButton) findViewById(R.id.radio_rom);
radio_sp = (RadioButton) findViewById(R.id.radio_sp);
radio_sd = (RadioButton) findViewById(R.id.radio_sd);


// 給按鈕注冊事件
btn_login.setOnClickListener(new MyOnclickListener());


// 采用sdcard數據進行實現數據回顯


// 獲取map集合對象
Map<String, String> map = loginService.readFileSDcard("csdnsdcard.txt");


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();
switch (id) {
case R.id.button_login:
// 獲取用戶名密碼
String name = edit_name.getText().toString();
String pass = edit_pass.getText().toString();


// 判斷用戶名密碼是否為空
if (TextUtils.isEmpty(name)) {
Toast.makeText(LoginActivity.this, "用戶名不可 為空",
Toast.LENGTH_LONG).show();
return;


} else if (TextUtils.isEmpty(pass)) {
Toast.makeText(LoginActivity.this, " 密碼不可 為空",
Toast.LENGTH_LONG).show();
return;
} else {
// 判斷記住密碼是否被選中
if (box_remember.isChecked()) {
// 進行保存
// 調用業務對象的業務方法
// 如果rom保存方式被選中
if (radio_rom.isChecked()) {
// 如果sp保存方式被選中
} else if (radio_sp.isChecked()) {


// 如果sd保存方式被選中
} else if (radio_sd.isChecked()) {


boolean flag = loginService.saveToSDCard(name,
pass, "csdnsdcard.txt");
if (flag) {
Toast.makeText(LoginActivity.this, "保存成功",
Toast.LENGTH_LONG).show();
} else {
Toast.makeText(LoginActivity.this, "保存失敗",
Toast.LENGTH_LONG).show();
}
}
} else {
Toast.makeText(LoginActivity.this, "不保存密碼",
Toast.LENGTH_LONG).show();
}
}
break;


default:
break;
}


}


}


}

 

 

\\ \

 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved