将 png 文件从一个文件夹复制到另一个文件夹

发布于 2024-11-05 21:36:48 字数 502 浏览 0 评论 0原文

我的文件夹中有一个 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”。

提前致谢

快乐编码

I have a PNG file in a folder, I want to copy this file to another folder. Is there a easy way to do this ?

Example:

//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);

So, I have the PNG in the SD card in the folder "S_Temp", now I want to copy this file to a new folder in the SD card itself, say "S".

Thanks in advance

Happy Coding

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月棠 2024-11-12 21:36:48
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());      
}
}

试试这个。

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());      
}
}

try this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文