您的位置:首页 > 移动开发 > Android开发

30 Android 自定义文件夹名字 的路径

2014-01-12 20:19 477 查看
/**
* 自定义文件夹名字 的路径
* @param fileName
* @param data
* @return
*/
public boolean saveFileToSdcard2(String fileName,byte[] data)
{
boolean flag=false;
//先判断sdcard的状态
String state =Environment.getExternalStorageState();
FileOutputStream outputStream=null;
//获取sdcard卡的根目录/mnt.sdcard/....
File root=Environment.getExternalStorageDirectory();
//表示sdcard卡挂载在手机上,并且可以读写
if(state.equals(Environment.MEDIA_MOUNTED)){
File file=new File(root.getAbsoluteFile()+"/txt");
if(!file.exists())
{
file.mkdirs();
}
try {
outputStream=new FileOutputStream(new File(file, fileName));
outputStream.write(data, 0, data.length);
flag=true;
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}finally{
if(outputStream != null)
{
try {
outputStream.close();
} catch (Exception e2) {
// TODO: handle exception
e2.printStackTrace();
}
}
}
}
return flag;
}

测试类相关代码:

public void save() {
FileService service = new FileService();
service.saveFileToSdcard2("aa.txt", "hello".getBytes());
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: