首頁 >Java >java教程 >如何將檔案寫入SD卡上的特定資料夾?

如何將檔案寫入SD卡上的特定資料夾?

Patricia Arquette
Patricia Arquette原創
2024-12-05 20:54:11978瀏覽

How to Write Files to a Specific Folder on the SD Card?

寫入SD卡上的資料夾

您目前的程式碼使用Environment.getExternalStorageDirectory()將檔案儲存到SD卡的根目錄SD 卡。若要寫入特定資料夾,請依照下列步驟操作:

  1. 取得SD 卡的絕對路徑:

    File sdCard = Environment.getExternalStorageDirectory();
  2. 建立想要的資料夾:

    File dir = new File (sdCard.getAbsolutePath() + "/myapplication/downloads");
    dir.mkdirs(); // Creates non-existent directories
  3. 在資料夾中建立檔案:

    File file = new File(dir, "myfile.txt");
  4. 開啟檔案輸出流並將資料寫入檔案:

    FileOutputStream f = new FileOutputStream(file);
    f.write(...);
    f.close();

範例程式碼:

File sdCard = Environment.getExternalStorageDirectory();
File dir = new File (sdCard.getAbsolutePath() + "/myapp/downloads");
dir.mkdirs();
File file = new File(dir, "file.txt");

FileOutputStream f = new FileOutputStream(file);
f.write("Hello world!".getBytes());
f.close();

透過這種方法,您現在可以將檔案寫入任何特定的SD 卡上的資料夾。

以上是如何將檔案寫入SD卡上的特定資料夾?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn