Android的file檔案操作詳解

來源:互聯網
上載者:User

  android的檔案操作要有許可權:

判斷SD卡是否插入

Environment.getExternalStorageState().equals(

android.os.Environment.MEDIA_MOUNTED);

獲得sd卡根目錄

File skRoot = Environment.getExternalStorageDirectory();

獲得私人根目錄

File fileRoot = Context.getFilesDir()+"";

確定或獲得檔案夾和檔案路徑

String path = File.getPath();//相對

String path = File.getAbsoultePath();//絕對

獲得檔案或檔案夾的父目錄

String parentPath = File.getParent()

獲得檔案或檔案夾的名稱:

String Name = File.getName();

建立檔案或檔案夾

File.createNewFile();//建立檔案

判斷是檔案或檔案夾

File.isDirectory()

列出檔案夾下的所有檔案和檔案夾名

File[] files = File.listFiles();

修改檔案夾和檔案名稱

File.renameTo(dest);

刪除檔案夾或檔案

File.delete();

檔案讀寫操作模式

Context.MODE_PRIVATE:新內容覆蓋原內容

Context.MODE_APPEND:新內容追加到原內容後

Context.MODE_WORLD_READABLE:允許其他應用程式讀取

Context.MODE_WORLD_WRITEABLE:允許其他應用程式寫入,會覆蓋原資料。

/*** 儲存檔案

* @param fileName

* @param fileContent

* @throws Exception*/

public void save(String fileName, String fileContent) throws Exception {

// Activity的父類的父類就是context,context與其他架構中的context相同為我們以供了一些核心操作工具。

FileOutputStream fileOutputStream = this.context.openFileOutput(

fileName, Context.MODE_PRIVATE);

fileOutputStream.write(fileContent.getBytes());

}

/**

* 讀取檔案

*

* @param fileName

* @return

* @throws Exception

*/

public String read(String fileName) throws Exception {

FileInputStream fileInputStream = this.context.openFileInput(fileName);

ByteArrayOutputStream byteArray = new ByteArrayOutputStream();

byte[] buffer = new byte[1024];

int len = 0;

while ((len = fileInputStream.read(buffer)) > 0) {

byteArray.write(buffer, 0, len);

};

return byteArray.toString();

}

}

相關文章

聯繫我們

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