java 多线程处理文件_Java 多线程处理大文本文件

该博客介绍了一种使用Java进行大文件处理的方法,通过多线程并行读取文件内容。代码示例展示了如何利用`ExecutorService`创建固定大小的线程池,`RandomAccessFile`和`FileChannel`来分割大文件,并同步处理每个线程读取到的数据块,确保正确地按行处理文本。最后,通过`CountDownLatch`来同步线程结束。
摘要由CSDN通过智能技术生成

对于文本文件,大部分都是一个线程处理一个文件,如果文本文件比较大,没找到类似如果多线程处理一个文本文件的方式。针对大文件的处理,写入如下代码,感觉不是太好,希望大神们指正。

package net.dotool.demo;

import java.io.IOException;

import java.io.RandomAccessFile;

import java.nio.ByteBuffer;

import java.nio.channels.FileChannel;

import java.nio.charset.Charset;

import java.util.concurrent.CountDownLatch;

import java.util.concurrent.ExecutorService;

import java.util.concurrent.Executors;

import net.dotool.IoTools;

public class BigFileDealMain {

static ExecutorService pool = Executors.newFixedThreadPool(2);

static CountDownLatch count = new CountDownLatch(2);

public static void main(String[] args) {

FileChannel fc = null;

try {

fc = new RandomAccessFile("F:\\logs\\server.log.2018-06-07-14", "r").getChannel();

long t = System.currentTimeMillis();

for (int i = 0; i < 2; i++) {

pool.execute(new ReadThread(fc));

}

count.await();

pool.shutdown();

System.out.println(System.currentTimeMillis() - t);

} catch (Exception e) {

e.printStackTrace();

} finally {

IoTools.close(fc);

}

}

public static synchronized ByteBuffer read(FileChannel fc) {

ByteBuffer bb = ByteBuffer.allocate(4096);

try {

if (fc.position() >= fc.size())

return null;

fc.read(bb);

bb.flip();

long filePosition = fc.position();

int lastN = 0;

int nowLimit = bb.limit();

for (int p = nowLimit - 1; p > 0; p--) {

bb.position(p);

if ('\n' == bb.get()) {

lastN = p + 1;

break;

}

}

bb.position(0);

bb.limit(lastN);

if (lastN > 0)

fc.position(filePosition - (nowLimit - lastN));

} catch (IOException e) {

e.printStackTrace();

}

return bb;

}

public static class ReadThread implements Runnable {

FileChannel fc;

public ReadThread(FileChannel fc) {

this.fc = fc;

}

@Override

public void run() {

ByteBuffer bb = null;

while ((bb = read(fc)) != null) {

int lastP = 0;

while (bb.hasRemaining()) {

if ('\n' == bb.get()) {

int nowP = bb.position();

bb.position((int) lastP);

int len = nowP - lastP;

byte[] b1 = new byte[len > 2 ? len - 2 : len];

bb.get(b1);

lastP = nowP;

if (len > 2) {//最后一两个字节是\r\n ,不同的系统可能换行符不同,

bb.get();

bb.get();

}

String str = new String(b1, Charset.forName("gbk"));

System.out.println(str);

}

}

}

count.countDown();

}

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值