android平台上的文件下载,文件和文件的操作(6)
来源:未知 责任编辑:责任编辑 发表时间:2014-04-20 03:36 点击:次
System.out.println(b);
return file;
}
/*判断文件(夹)是否存在
*
* */
public boolean isFileExist(String path){
return new File(SDPATH+path).exists();
}
public File writeToSDFromInputStream(String path,String fileName,InputStream in){
File file=null;
OutputStream out = null;
createDirs(path);
try {
path=path+"/"+fileName;
System.out.println(path);
file=createFile(path);
out=new FileOutputStream(file);
byte[] buffer=new byte[4*1024];
while(in.read(buffer)!=-1){
out.write(buffer);
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
try {
if(out!=null)
out.close();
if(in!=null)
in.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>