hdfs java读取文件_Java 读取HDFS文件系统

public classReadHDFS {public static voidmain(String[]args){long startLong =System.currentTimeMillis();

HDFSReadLog.writeLog("start read file");

String path;if (args.length > 1) {//path = args[0];

Constant.init(args[0],args[1]);

}HDFSReadLog.writeLog(Constant.PATH);try{

getFile(Constant.URI+Constant.PATH);

}catch(IOException e) {

e.printStackTrace();

}long endLong =System.currentTimeMillis();

HDFSReadLog.writeLog("cost " + (endLong -startLong)/1000 + " seconds");

HDFSReadLog.writeLog("cost " + (endLong -startLong)/1000/60 + " minute");

}private static void getFile(String filePath) throwsIOException {

FileSystem fs=FileSystem.get(URI.create(filePath), HDFSConf.getConf());

Path path= newPath(filePath);if (fs.exists(path) &&fs.isDirectory(path)) {

FileStatus[] stats=fs.listStatus(path);

FSDataInputStream is;

FileStatus stat;byte[] buffer;intindex;

StringBuilder lastStr= newStringBuilder();for(FileStatus file : stats){try{

HDFSReadLog.writeLog("start read : " +file.getPath());

is=fs.open(file.getPath());

stat=fs.getFileStatus(path);int sum =is.available();if(sum == 0){

HDFSReadLog.writeLog("have no data : " +file.getPath() );continue;

}

HDFSReadLog.writeLog("there have : " + sum + " bytes");

buffer= new byte[sum];

// 注意一点,如果文件太大了,可能会内存不够用。在本机测得时候,读一个100多M的文件,导致内存不够。

is.readFully(0,buffer);

String result=Bytes.toString(buffer);

// 写到 hbaseWriteHBase.writeHbase(result);is.close();

HDFSReadLog.writeLog("read : " + file.getPath() + " end");

}catch(IOException e){

e.printStackTrace();

HDFSReadLog.writeLog("read " + file.getPath() +" error");

HDFSReadLog.writeLog(e.getMessage());

}

}

HDFSReadLog.writeLog("Read End");

fs.close();

}else{

HDFSReadLog.writeLog(path+ " is not exists");

}

}

}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值