我是 Hadoop HDFS 的新手,对 Java 很生疏,我需要一些帮助。我正在尝试从 HDFS 读取文件并计算该文件的 MD5 哈希值。一般的 Hadoop 配置如下。
private FSDataInputStream hdfsDIS;
private FileInputStream FinputStream;
private FileSystem hdfs;
private Configuration myConfig;
myConfig.addResource("/HADOOP_HOME/conf/core-site.xml");
myConfig.addResource("/HADOOP_HOME/conf/hdfs-site.xml");
hdfs = FileSystem.get(new URI("hdfs://NodeName:54310"), myConfig);
hdfsDIS = hdfs.open(hdfsFilePath);
该函数hdfs.open(hdfsFilePath)
返回一个FSDataInputStream
问题是我只能从FSDataInputStream
HDFS 中取出,但我想从中FileInputStream
取出。
下面的代码执行散列部分,并改编自我在 StackOverflow 某处找到的内容(现在似乎找不到指向它的链接)。
FileInputStream FinputStream = hdfsDIS; // <---This is where the problem is
MessageDigest md;
try {
md = MessageDigest.getInstance("MD5");
FileChannel channel = FinputStream.getChannel();
ByteBuffer buff = ByteBuffer.allocate(2048);
while(channel.read(buff) != -1){
buff.flip();
md.update(buff);
buff.clear();
}
byte[] hashValue = md.digest();
return toHex(hashValue);
}
catch (NoSuchAlgorithmException e){
return null;
}
catch (IOException e){
return null;
}
我需要 a 的原因FileInputStream
是因为执行散列的代码使用 aFileChannel
据说可以提高从文件中读取数据的效率。
有人可以告诉我如何将其FSDataInputStream
转换为FileInputStream