1. 程式人生 > 其它 >大話企業級android讀書筆記(三)

大話企業級android讀書筆記(三)

android中的資料儲存型別包括:記憶體,普通檔案,Shared Preferences,XML和SQLLite等

檔案操作:

包括讀寫

/**
 * 【檔案操作】
 */
package Iwit.IwitTest;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;

import android.content.Context;
import android.widget.Toast;

/**
 * @author Shine
 *【檔案讀,寫】
 */
public class FileOperate
{  
 /**
  * 【讀取檔案】
  * @param context
  * @param fileName
  * @return
  */
 public String ReadText(Context context,String fileName)
 {
       FileInputStream fIn = null;
       InputStreamReader isr = null;      
       char[] inputBuffer = new char[255];
       String data = null;      
       try
       {
        fIn =context.openFileInput(fileName);     
           isr = new InputStreamReader(fIn);
           isr.read(inputBuffer);
           data = new String(inputBuffer);
           Toast.makeText(context, "read Succeed",Toast.LENGTH_SHORT).show();
       }
      catch (Exception e)
          {     
       e.printStackTrace();
       Toast.makeText(context, " not read",Toast.LENGTH_SHORT).show();
          }
       finally
       {
              try {
                     isr.close();
                     fIn.close();
                   }
              catch (IOException e)
              {
                    e.printStackTrace();
              }
           }
       return data;
   }
 
 /**
  * 【寫入檔案】
  * @param context
  * @param fileName
  * @param data
  */
 public void WriteText(Context context, String fileName,String data)
 {
       FileOutputStream fOut = null;
       OutputStreamWriter osw = null;
      
       try{
        fOut =context.openFileOutput(fileName, 1);
           osw = new OutputStreamWriter(fOut);
           osw.write(data);
           osw.flush();
           Toast.makeText(context, " saved",Toast.LENGTH_SHORT).show();
           }
           catch (Exception e)
           {     
           e.printStackTrace();
           Toast.makeText(context, " not saved",Toast.LENGTH_SHORT).show();
           }
           finally
           {
              try {
                     osw.close();
                     fOut.close();
                   }
              catch (IOException e)
               {
                    e.printStackTrace();
                 }
           }
  }
}

關於android操作sdcard的細節,詳看

http://www.ylmf.net/zhuanti/zt02/2010/1130/12389.html

接下來是共享引數的操作,這個適合於將一些配置資訊儲存到這個位置上,可以儲存小量的資料

http://www.cnblogs.com/over140/archive/2011/01/13/1934301.html

介紹的很詳細

接下來是android操作關於sqllite的操作,

http://www.cnblogs.com/TerryBlog/archive/2010/06/12/1757166.html

連示例都有了,可以下來測試

然後是內容提供訪問者ContentProvider

主要是用到多個程式之間對外提供一個可訪問的介面,通過統一的uri對外提供訪問

http://www.cnblogs.com/linzheng/archive/2011/01/22/1942101.html