程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android安卓-android 在根目錄創建文件

android安卓-android 在根目錄創建文件

編輯:編程綜合問答
android 在根目錄創建文件

求教,請大神幫幫忙。如何在文件系統根目錄創建目錄和文件,字數字數字數字數字數字數字數字數字數字數字數字數字數

最佳回答:


String status = Environment.getExternalStorageState();
if (status.equals(Environment.MEDIA_MOUNTED)) {
String main= Environment.getExternalStorageDirectory().getPath()+File.separator+"hello";
File destDir = new File(main);
if (!destDir.exists()) {
destDir.mkdirs();//在根創建了文件夾hello
}
destDir.mkdirs();
String toFile = main+File.separator+"test.txt"
java.io.FileOutputStream fosto = new FileOutputStream(toFile);//創建test.text空文件
//fosto.write(bt, 0, c);//寫內容
//void java.io.FileOutputStream.write(byte[] buffer, int byteOffset, int byteCount) throws IOException//說明
//....

}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved