java nio文件传输_Java NIO通道之间的数据传输

在Java NIO中,可以非常频繁地将数据从一个通道传输到另一个通道。批量传输文件数据是非常普遍的,因为几个优化方法已经添加到FileChannel类中,使其更有效率。

通道之间的数据传输在FileChannel类中的两种方法是:

FileChannel.transferTo()方法

FileChannel.transferFrom()方法

FileChannel.transferTo()方法

transferTo()方法用来从FileChannel到其他通道的数据传输。

下面来看一下transferTo()方法的例子:

public abstract class Channel extends AbstractChannel

{

public abstract long transferTo (long position, long count, WritableByteChannel target);

}

FileChannel.transferFrom()方法

transferFrom()方法允许从源通道到FileChannel的数据传输。

下面来看看transferFrom()方法的例子:

public abstract class Channel extends AbstractChannel

{

public abstract long transferFrom (ReadableByteChannel src, long position, long count);

}

基本通道到通道数据传输示例

下面来看看从4个不同文件读取文件内容的简单示例,并将它们的组合输出写入第五个文件:

package com.yiibai;

import java.io.File;

import java.io.FileOutputStream;

import java.io.FileInputStream;

import java.nio.channels.WritableByteChannel;

import java.nio.channels.FileChannel;

public class TransferDemo {

public static void main(String[] argv) throws Exception {

String relativelyPath = System.getProperty("user.dir");

// Path of Input files

String[] iF = new String[] { relativelyPath + "/input1.txt", relativelyPath + "/input2.txt",

relativelyPath + "/input3.txt", relativelyPath + "/input4.txt" };

// Path of Output file and contents will be written in this file

String oF = relativelyPath + "/combine_output.txt";

// Acquired the channel for output file

FileOutputStream output = new FileOutputStream(new File(oF));

WritableByteChannel targetChannel = output.getChannel();

for (int j = 0; j < iF.length; j++) {

// Get the channel for input files

FileInputStream input = new FileInputStream(iF[j]);

FileChannel inputChannel = input.getChannel();

// The data is tranfer from input channel to output channel

inputChannel.transferTo(0, inputChannel.size(), targetChannel);

// close an input channel

inputChannel.close();

input.close();

}

// close the target channel

targetChannel.close();

output.close();

System.out.println("All jobs done...");

}

}

在上述程序中,将4个不同的文件(即input1.txt,input2.txt,input3.txt和input4.txt)的内容读取并将其组合的输出写入第五个文件,即:combine_output.txt文件的中。combine_output.txt文件的内容如下 -

this is content from input1.txt

this is content from input2.txt

this is content from input3.txt

this is content from input4.txt

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值