我在文件夹中有一个PNG文件,我想将此文件复制到另一个文件夹。有一个简单的方法吗?
示例:
//Creating PNG
File file = new File(Environment.getExternalStorageDirectory()
+ File.separator+"/S_Temp/temp_"+formattedDate+".png");
FileOutputStream out = new FileOutputStream(file);
view.mBitmap.compress(Bitmap.CompressFormat.PNG,100, out);
所以,我在SD卡的“S_Temp”文件夹中有PNG,现在我想把这个文件复制到SD卡本身的一个新文件夹中,说“S”。
提前致谢
快乐编码
答案 0 :(得分:8)
private static void copyfile(String srFile, String dtFile){
try{
File f1 = new File(srFile);
File f2 = new File(dtFile);
InputStream in = new FileInputStream(f1);
//For Append the file.
//OutputStream out = new FileOutputStream(f2,true);
//For Overwrite the file.
OutputStream out = new FileOutputStream(f2);
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0){
out.write(buf, 0, len);
}
in.close();
out.close();
System.out.println("File copied.");
}
catch(FileNotFoundException ex){
System.out.println(ex.getMessage() + " in the specified directory.");
System.exit(0);
}
catch(IOException e){
System.out.println(e.getMessage());
}
}
试试这个。