• 将一个文件保存在另一个路径下,并重命名


    import java.io.*;
    import java.util.Date;

    public class BackTest {
    static int BUFFER_SIZE = 1024;
    public static void main(String[] args) {
    int len=0;
    String fileName = "E:\\a.txt";
    String path = "E:\\a";
    System.out.println("保存图像方法");
    String latterpart= fileName.substring(fileName.lastIndexOf( "." ));
    String imagePath=path+"\\"+new Date().getTime()+latterpart;
    System.out.println("保存好的图像的路径为"+imagePath);

    String imageName=imagePath.substring(imagePath.lastIndexOf( "\\" )+1);
    File myFile = new File("E:\\a.txt");
    FileOutputStream fos;
    try {
    fos = new FileOutputStream(imagePath);
    FileInputStream fis=new FileInputStream(myFile);
    byte[] buffer=new byte[BUFFER_SIZE];
    while((len=fis.read(buffer))>0){
    fos.write(buffer,0,len);
    }
    } catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    }

    }
    }

    写的挺乱的,先粘贴上,日后在修改一下。

  • 相关阅读:
    机器学习笔记[保持更新]
    习题 7-3 uva211
    习题 7-2 uva225(回溯)
    习题7-1 uva 208(剪枝)
    poj2331 (IDA*)
    poj2449 (第k条最短路)
    POJ 1324(BFS + 状态压缩)
    hdu3567 八数码(搜索)--预处理
    poj 1367 robot(搜索)
    例 7-10 uva12212(迭代加深搜索)
  • 原文地址:https://www.cnblogs.com/wrh526/p/2200626.html
Copyright © 2020-2023  润新知