java输入任意一个文件,Java - 多个输入文件

How does one read multiple input files in Java? I need to read multiple inputs (several text documents) and create a Term Document Matrix.

I can read one file like this:

File file = new File("a.txt");

int ch;

StringBuffer strContent = new StringBuffer("");

FileInputStream stream = null;

try

{

stream = new FileInputStream(file);

while( (ch = stream.read()) != -1)

strContent.append((char)ch);

stream.close();

}

Is there any library to read multiple input files? Or I just need to loop and read all files? All files are txt.

解决方案

Is there any library to read multiple input files?

AFAIK, no.

Here is your code adapted to read multiple files into the strContent buffer.

String names = new String[]{"a.txt", "b.txt", "c.txt"};

StringBuffer strContent = new StringBuffer("");

for (String name : names) {

File file = new File(name);

int ch;

FileInputStream stream = null;

try {

stream = new FileInputStream(file);

while( (ch = stream.read()) != -1) {

strContent.append((char) ch);

}

} finally {

stream.close();

}

}

Note that I've moved the close call into a finally block so that you don't leak file descriptors if there is a problem reading the stream. The main changes are to simply put your code into a loop, and tweak the order of a couple of the statements.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值