美文网首页
2019-01-15 将文件1中的内容复制到文件2

2019-01-15 将文件1中的内容复制到文件2

作者: chenhbdl | 来源:发表于2019-01-15 11:21 被阅读0次
    public static void main(String[] args) {
            String path1="F:/1.txt";
            String path2="F:/2.txt";
            FileWriter fw=null;
            FileReader fr=null;
            try {
                fw=new FileWriter(path2);
                fr=new FileReader(path1);
                //方式一:按字节写入
                /*int temp=0;
                while((temp=fr.read())!=-1) {
                    fw.write(temp);
                }
                */
                //方式二:按字符数组写入
                char[] data=new char[1024];
                int temp2=0;
                while((temp2=fr.read(data))!=-1) {
                    fw.write(new String(data,0,temp2));
                }
                fw.flush();
                
            } catch (Exception e) {
                // TODO: handle exception
            }
            
        }
    

    相关文章

      网友评论

          本文标题:2019-01-15 将文件1中的内容复制到文件2

          本文链接:https://www.haomeiwen.com/subject/bkwedqtx.html