我是靠谱客的博主 不安溪流,最近开发中收集的这篇文章主要介绍java 合并文件_如何使用java合并多个文件,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

展开全部

使用java编程语言,对文件32313133353236313431303231363533e78988e69d8331333337396231进行操作,合并多个文件,代码如下:import static java.lang.System.out;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.IOException;

import java.nio.ByteBuffer;

import java.nio.channels.FileChannel;

import java.util.Arrays;

public class test {

public static final int BUFSIZE = 1024 * 8;

public static void mergeFiles(String outFile, String[] files) {

FileChannel outChannel = null;

out.println("Merge " + Arrays.toString(files) + " into " + outFile);

try {

outChannel = new FileOutputStream(outFile).getChannel();

for(String f : files){

FileChannel fc = new FileInputStream(f).getChannel();

ByteBuffer bb = ByteBuffer.allocate(BUFSIZE);

while(fc.read(bb) != -1){

bb.flip();

outChannel.write(bb);

bb.clear();

}

fc.close();

}

out.println("Merged!! ");

} catch (IOException ioe) {

ioe.printStackTrace();

} finally {

try {if (outChannel != null) {outChannel.close();}} catch (IOException ignore) {}

}

}

//下面代码是将D盘的1.txt 2.txt 3.txt文件合并成out.txt文件。

public static void main(String[] args) {

mergeFiles("D:/output.txt", new String[]{"D:/1.txt", "D:/2.txt", "D:/3.txt"});

}

}

最后

以上就是不安溪流为你收集整理的java 合并文件_如何使用java合并多个文件的全部内容,希望文章能够帮你解决java 合并文件_如何使用java合并多个文件所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部