jekeyhui99 发表于 2015-11-29 11:46:44

[转]Android读写文件

本文转自:http://blog.sina.com.cn/s/blog_4d25c9870100qpax.html
一、       从resource中的raw文件夹中获取文件并读取数据(资源文件只能读不能写)String res = ""; try{ InputStream in = getResources().openRawResource(R.raw.bbi); //在\Test\res\raw\bbi.txt,   int length = in.available();          byte [] buffer = new byte;         in.read(buffer);            //res = EncodingUtils.getString(buffer, "UTF-8");   //res = EncodingUtils.getString(buffer, "UNICODE");    res = EncodingUtils.getString(buffer, "BIG5");    //依bbi.txt的编码类型选择合适的编码,如果不调整会乱码   in.close();               }catch(Exception e){       e.printStackTrace();            } myTextView.setText(res);//把得到的内容显示在TextView上 二、       从asset中获取文件并读取数据(资源文件只能读不能写)String fileName = "yan.txt"; //文件名字String res=""; try{    InputStream in = getResources().getAssets().open(fileName);   // \Test\assets\yan.txt这里有这样的文件存在   int length = in.available();         byte [] buffer = new byte;      in.read(buffer);            res = EncodingUtils.getString(buffer, "UTF-8");   }catch(Exception e){       e.printStackTrace();            } 三、       从sdcard中去读文件,首先要把文件通过\android-sdk-windows\tools\adb.exe把本地计算机上的文件copy到sdcard上去,adb.exe push e:/Y.txt /sdcard/, 不可以用adb.exe push e:\Y.txt \sdcard\ 同样: 把仿真器上的文件copy到本地计算机上用: adb pull ./data/data/com.tt/files/Test.txt e:/ String fileName = "/sdcard/Y.txt";//也可以用String fileName = "mnt/sdcard/Y.txt";String res="";   try{ FileInputStream fin = new FileInputStream(fileName);//FileInputStream fin = openFileInput(fileName);//用这个就不行了,必须用FileInputStream    int length = fin.available();     byte [] buffer = new byte;     fin.read(buffer);       res = EncodingUtils.getString(buffer, "UTF-8");     fin.close();       }catch(Exception e){          e.printStackTrace(); } myTextView.setText(res); 四、       写文件, 一般写在\data\data\com.test\files\里面,打开DDMS查看file explorer是可以看到仿真器文件存放目录的结构的   String fileName = "TEST.txt";   String message = "FFFFFFF11111FFFFF" ;writeFileData(fileName, message);   public voidwriteFileData(String fileName,String message){        try{       FileOutputStream fout =openFileOutput(fileName, MODE_PRIVATE);      byte [] bytes = message.getBytes();       fout.write(bytes);          fout.close();       }        catch(Exception e){       e.printStackTrace();        }    }    五、       写, 读data/data/目录(相当AP工作目录)上的文件,用openFileOutput   //写文件在./data/data/com.tt/files/下面   public voidwriteFileData(String fileName,String message){        try{       FileOutputStream fout =openFileOutput(fileName, MODE_PRIVATE);      byte [] bytes = message.getBytes();       fout.write(bytes);          fout.close();       }        catch(Exception e){       e.printStackTrace();        }    }//-------------------------------------------------------//读文件在./data/data/com.tt/files/下面   public String readFileData(String fileName){       String res="";       try{          FileInputStream fin = openFileInput(fileName);          int length = fin.available();          byte [] buffer = new byte;          fin.read(buffer);            res = EncodingUtils.getString(buffer, "UTF-8");          fin.close();         }       catch(Exception e){          e.printStackTrace();       }       return res;     }   六、       写, 读sdcard目录上的文件,要用FileOutputStream, 不能用openFileOutput     //写在/mnt/sdcard/目录下面的文件   public voidwriteFileSdcard(String fileName,String message){        try{       //FileOutputStream fout = openFileOutput(fileName, MODE_PRIVATE);       FileOutputStream fout = newFileOutputStream(fileName);      byte [] bytes = message.getBytes();       fout.write(bytes);          fout.close();       }        catch(Exception e){       e.printStackTrace();        }    }   //读在/mnt/sdcard/目录下面的文件   public String readFileSdcard(String fileName){      String res="";       try{          FileInputStream fin = new FileInputStream(fileName);          int length = fin.available();          byte [] buffer = new byte;          fin.read(buffer);            res = EncodingUtils.getString(buffer, "UTF-8");          fin.close();         }       catch(Exception e){          e.printStackTrace();       }       return res;    } 注: openFileOutput是在raw里编译过的,FileOutputStream是任何文件都可以

jekeyhui99 发表于 2015-11-29 11:47:14

Android如何检测SD卡某个目录是否存在自己写个音乐播放器,打开播放列表显示歌曲清单首先要扫描SD目录下MP3文件夹里面的mp3文件,那么在扫描之前,首先要检测这个MP3路径是否存在(假设SD卡已存在),因为如果路径不存在是会报空指针错误的,所有如果没有扫描到路径就需要创建。下面是判断的方法。在SD卡创建文件 需要在AndroidManifest.xml中添加权限 <uses-permissionandroid:name="android.permission.WRITE_EXTERNAL_STORAGE"/> . view plaincopyprint? 1. //获得当前外部储存设备的目录2.3. String SDCardRoot =Environment.getExternalStorageDirectory().getAbsolutePath() +File.separator;4.5. /*6. * 判断SD卡mp3目录是否存在7. */8. public void isDirExist(String dir){9. File file = new File(SDCardRoot + dir + File.separator);10. if(!file.exists())11. file.mkdir(); //如果不存在则创建12.13. }
然后在做扫描SD卡歌曲操作之前,只需要调用isDirExist(“MP3”)就可以了。
页: [1]
查看完整版本: [转]Android读写文件