我有一些MapReduce作业,我想在Java代码中进一步使用Reducer的输出文件。我如何从这样的文件中读取,因为它在分布式文件系统上?
由于
答案 0 :(得分:1)
由于您希望在简单的Java代码中进一步使用Reducer的输出文件,为此您可以使用以下代码: -
` try{
Path pt=new Path("hdfs://npvm11.np.wc1.yellowpages.com:9000/user/john/abc.txt");
FileSystem fs = FileSystem.get(new Configuration());
BufferedReader br=new BufferedReader(new InputStreamReader(fs.open(pt)));
String line;
line=br.readLine();
while (line != null){
System.out.println(line);
line=br.readLine();
}
}
catch(Exception e){
}`
将地址替换为您要在java代码中使用的文件地址。