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

來源:互聯網
上載者:User

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

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.