Android開發之檔案操作模式深入理解

來源:互聯網
上載者:User

一、基本概念 複製代碼 代碼如下:// 內容物件
private Context context;
public FileService(Context context)
{
super();
this.context = context;
}
// 儲存檔案方法
public void save(String filename, String fileContent) throws Exception
{
FileOutputStream fos = context.openFileOutput(filename, context.MODE_PRIVATE);
fos.write(fileContent.getBytes("UTF-8"));
fos.close();
}

私人模式
①只能被建立這個檔案的當前應用訪問
②若檔案不存在會建立檔案;若建立的檔案已存在則會覆蓋掉原來的檔案
Context.MODE_PRIVATE = 0;
追加模式
①私人的
②若檔案不存在會建立檔案;若檔案存在則在檔案的末尾進行追加內容
Context.MODE_APPEND = 32768;
可讀模式
①建立出來的檔案可以被其他應用所讀取
Context.MODE_WORLD_READABLE=1;
可寫入模式
①允許其他應用對其進行寫入。
Context.MODE_WORLD_WRITEABLE=2
二、組合使用 複製代碼 代碼如下:FileOutputStream outStream = this.openFileOutput("xy.txt",Context.MODE_WORLD_READABLE+Context.MODE_WORLD_WRITEABLE);

允許其他應用讀寫,並預設覆蓋 複製代碼 代碼如下:FileOutputStream outStream = this.openFileOutput("xy.txt",Context.MODE_APPEND+Context.MODE_WORLD_READABLE+Context.MODE_WORLD_WRITEABLE);

追加模式,但允許其他應用讀寫

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.