| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1612 人关注过本帖
标题:The method write(int) in the type FileOutputStream is not applicable f ...
只看楼主 加入收藏
活出样子
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2020-4-30
收藏
 问题点数:0 回复次数:0 
The method write(int) in the type FileOutputStream is not applicable for the arg
package Sample;

import
import
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;

public class CopyGFile {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        String infile = "c:\\copy.sql";
        String outfile = "c:\\copy.txt";
        //获取源文件和目标文件的输出流
        FileInputStream fin = new FileInputStream(infile);
        FileOutputStream fout = new FileOutputStream(outfile);
        //获取输入输出通道
        FileChannel fcin = fin.getChannel();
        FileChannel fcout = fout.getChannel();
        //创建缓冲区
        ByteBuffer buffer = ByteBuffer.allocate(1024);
        while(true) {
            //clear方法重设缓冲区,使它可以接受读入的数据
            buffer.clear();
            //从输入通道中将数据读到缓冲区
            int r = fcin.read(buffer);
            //read方法返回读取的字节,可能为零,如果该通道已到达流的末尾,则返回-1
            if(r == -1) {
                break;
            }
            //flip方法让缓冲区可以将新读入的数据写入另一个通道
            buffer.flip();
            //从输出通道中将数据写入缓冲区
            fout.write(buffer);
        }
    }

}
搜索更多相关主题的帖子: buffer 数据 java 缓冲区 The 
2020-10-25 21:56
快速回复:The method write(int) in the type FileOutputStream is not applica ...
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017102 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved