Android實現(xiàn)文件的保存與讀取功能示例
本文實例講述了Android實現(xiàn)文件的保存與讀取功能。分享給大家供大家參考,具體如下:
注: 在Activity中有 getFileDir() 和 getCacheDir(); 方法可以獲得當前的手機自帶的存儲空間中的當前包文件的路徑
getFileDir() ----- /data/data/cn.xxx.xxx(當前包)/files
getCacheDir() ----- /data/data/cn.xxx.xxx(當前包)/cache
1. 編寫文件讀取與寫入功能實現(xiàn)類 FileService
package cn.android.service;
import java.io.ByteArrayOutputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import android.content.Context;
import android.util.Log;
/**
* 文件保存與讀取功能實現(xiàn)類
* @author Administrator
*
* 2010-6-28 下午08:15:18
*/
public class FileService {
public static final String TAG = "FileService";
private Context context;
//得到傳入的上下文對象的引用
public FileService(Context context) {
this.context = context;
}
/**
* 保存文件
*
* @param fileName 文件名
* @param content 文件內(nèi)容
* @throws Exception
*/
public void save(String fileName, String content) throws Exception {
// 由于頁面輸入的都是文本信息,所以當文件名不是以.txt后綴名結(jié)尾時,自動加上.txt后綴
if (!fileName.endsWith(".txt")) {
fileName = fileName + ".txt";
}
byte[] buf = fileName.getBytes("iso8859-1");
Log.e(TAG, new String(buf,"utf-8"));
fileName = new String(buf,"utf-8");
Log.e(TAG, fileName);
// Context.MODE_PRIVATE:為默認操作模式,代表該文件是私有數(shù)據(jù),只能被應(yīng)用本身訪問,在該模式下,寫入的內(nèi)容會覆蓋原文件的內(nèi)容,如果想把新寫入的內(nèi)容追加到原文件中??梢允褂肅ontext.MODE_APPEND
// Context.MODE_APPEND:模式會檢查文件是否存在,存在就往文件追加內(nèi)容,否則就創(chuàng)建新文件。
// Context.MODE_WORLD_READABLE和Context.MODE_WORLD_WRITEABLE用來控制其他應(yīng)用是否有權(quán)限讀寫該文件。
// MODE_WORLD_READABLE:表示當前文件可以被其他應(yīng)用讀??;MODE_WORLD_WRITEABLE:表示當前文件可以被其他應(yīng)用寫入。
// 如果希望文件被其他應(yīng)用讀和寫,可以傳入:
// openFileOutput("output.txt", Context.MODE_WORLD_READABLE + Context.MODE_WORLD_WRITEABLE);
FileOutputStream fos = context.openFileOutput(fileName, context.MODE_PRIVATE);
fos.write(content.getBytes());
fos.close();
}
/**
* 讀取文件內(nèi)容
*
* @param fileName 文件名
* @return 文件內(nèi)容
* @throws Exception
*/
public String read(String fileName) throws Exception {
// 由于頁面輸入的都是文本信息,所以當文件名不是以.txt后綴名結(jié)尾時,自動加上.txt后綴
if (!fileName.endsWith(".txt")) {
fileName = fileName + ".txt";
}
FileInputStream fis = context.openFileInput(fileName);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
byte[] buf = new byte[1024];
int len = 0;
//將讀取后的數(shù)據(jù)放置在內(nèi)存中---ByteArrayOutputStream
while ((len = fis.read(buf)) != -1) {
baos.write(buf, 0, len);
}
fis.close();
baos.close();
//返回內(nèi)存中存儲的數(shù)據(jù)
return baos.toString();
}
}
2. 編寫Activity類:
package cn.android.test;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
import cn.android.service.FileService;
public class TestAndroidActivity extends Activity {
/** Called when the activity is first created. */
//得到FileService對象
private FileService fileService = new FileService(this);
//定義視圖中的filename輸入框?qū)ο?
private EditText fileNameText;
//定義視圖中的contentText輸入框?qū)ο?
private EditText contentText;
//定義一個土司提示對象
private Toast toast;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//得到視圖中的兩個輸入框和兩個按鈕的對象引用
Button button = (Button)this.findViewById(R.id.button);
Button read = (Button)this.findViewById(R.id.read);
fileNameText = (EditText) this.findViewById(R.id.filename);
contentText = (EditText) this.findViewById(R.id.content);
//為保存按鈕添加保存事件
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String fileName = fileNameText.getText().toString();
String content = contentText.getText().toString();
//當文件名為空的時候,提示用戶文件名為空,并記錄日志。
if(isEmpty(fileName)) {
toast = Toast.makeText(TestAndroidActivity.this, R.string.empty_filename, Toast.LENGTH_LONG);
toast.setMargin(RESULT_CANCELED, 0.345f);
toast.show();
Log.w(fileService.TAG, "The file name is empty");
return;
}
//當文件內(nèi)容為空的時候,提示用戶文件內(nèi)容為空,并記錄日志。
if(isEmpty(content)) {
toast = Toast.makeText(TestAndroidActivity.this, R.string.empty_content, Toast.LENGTH_LONG);
toast.setMargin(RESULT_CANCELED, 0.345f);
toast.show();
Log.w(fileService.TAG, "The file content is empty");
return;
}
//當文件名和內(nèi)容都不為空的時候,調(diào)用fileService的save方法
//當成功執(zhí)行的時候,提示用戶保存成功,并記錄日志
//當出現(xiàn)異常的時候,提示用戶保存失敗,并記錄日志
try {
fileService.save(fileName, content);
toast = Toast.makeText(TestAndroidActivity.this, R.string.success, Toast.LENGTH_LONG);
toast.setMargin(RESULT_CANCELED, 0.345f);
toast.show();
Log.i(fileService.TAG, "The file save successful");
} catch (Exception e) {
toast = Toast.makeText(TestAndroidActivity.this, R.string.fail, Toast.LENGTH_LONG);
toast.setMargin(RESULT_CANCELED, 0.345f);
toast.show();
Log.e(fileService.TAG, "The file save failed");
}
}
});
//為讀取按鈕添加讀取事件
read.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
//得到文件名輸入框中的值
String fileName = fileNameText.getText().toString();
//如果文件名為空,則提示用戶輸入文件名,并記錄日志
if(isEmpty(fileName)) {
toast = Toast.makeText(TestAndroidActivity.this, R.string.empty_filename, Toast.LENGTH_LONG);
toast.setMargin(RESULT_CANCELED, 0.345f);
toast.show();
Log.w(fileService.TAG, "The file name is empty");
return;
}
//調(diào)用fileService的read方法,并將讀取出來的內(nèi)容放入到文本內(nèi)容輸入框里面
//如果成功執(zhí)行,提示用戶讀取成功,并記錄日志。
//如果出現(xiàn)異常信息(例:文件不存在),提示用戶讀取失敗,并記錄日志。
try {
contentText.setText(fileService.read(fileName));
toast = Toast.makeText(TestAndroidActivity.this, R.string.read_success, Toast.LENGTH_LONG);
toast.setMargin(RESULT_CANCELED, 0.345f);
toast.show();
Log.i(fileService.TAG, "The file read successful");
} catch (Exception e) {
toast = Toast.makeText(TestAndroidActivity.this, R.string.read_fail, Toast.LENGTH_LONG);
toast.setMargin(RESULT_CANCELED, 0.345f);
toast.show();
Log.e(fileService.TAG, "The file read failed");
}
}
});
}
//編寫一個isEmpty方法,判斷字符串是否為空
private boolean isEmpty(String s) {
if(s == null || "".equals(s.trim())) {
return true;
}
return false;
}
}
3.文件布局文件:main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/filename"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/filename"
/>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/content"
/>
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minLines="3"
android:id="@+id/content"
/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button"
android:text="@string/save"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/read"
android:text="@string/read"
/>
</LinearLayout>
</LinearLayout>
PS:由于我在測試這個功能的時候發(fā)現(xiàn)文件名無法使用中文(sdk2.2 + 模擬器),如果有哪為高手無意中瀏覽此文章后,能對這個問題予以指點,我將感激不盡。呵呵。
更多關(guān)于Android相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Android文件操作技巧匯總》、《Android編程之a(chǎn)ctivity操作技巧總結(jié)》、《Android視圖View技巧總結(jié)》、《Android操作SQLite數(shù)據(jù)庫技巧總結(jié)》、《Android操作json格式數(shù)據(jù)技巧總結(jié)》、《Android數(shù)據(jù)庫操作技巧總結(jié)》、《Android編程開發(fā)之SD卡操作方法匯總》、《Android開發(fā)入門與進階教程》、《Android資源操作技巧匯總》及《Android控件用法總結(jié)》
希望本文所述對大家Android程序設(shè)計有所幫助。
相關(guān)文章
Android獲取SDcard目錄及創(chuàng)建文件夾的方法
今天小編就為大家分享一篇Android獲取SDcard目錄及創(chuàng)建文件夾的方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-08-08
基于Android studio3.6的JNI教程之ncnn人臉檢測mtcnn功能
這篇文章主要介紹了基于Android studio3.6的JNI教程之ncnn之人臉檢測mtcnn功能,本文通過實例代碼給大家介紹的非常詳細,對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-03-03
ANDROID BottomNavigationBar底部導(dǎo)航欄的實現(xiàn)示例
本篇文章主要介紹了ANDROID BottomNavigationBar底部導(dǎo)航欄的實現(xiàn)示例,非常具有實用價值,需要的朋友可以參考下2017-10-10
Android使用RadioGroup實現(xiàn)底部導(dǎo)航欄
這篇文章主要為大家詳細介紹了Android使用RadioGroup實現(xiàn)底部導(dǎo)航欄,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-08-08
利用百度地圖Android sdk高仿微信發(fā)送位置功能及遇到的問題
這篇文章給大家介紹了利用百度地圖Android sdk高仿微信發(fā)送位置功能,在實現(xiàn)此功能的時候遇到點小問題,下面小編給大家列出來,需要的朋友參考下吧2017-12-12

