码迷,mamicode.com
首页 > 其他好文 > 详细

显示Hadoop文件系统中一组路径的文件信息

时间:2015-02-23 01:26:30      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

//显示Hadoop文件系统中一组路径的文件信息
//我们可以用这个程序来显示一组路径集目录列表的并集
package com;


import java.io.IOException;
import java.net.URI;


import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileStatus;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.FileUtil;
import org.apache.hadoop.fs.Path;


public class ListStatus {


/**
* @param args
* @throws IOException 
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
String uri = args[0];
Configuration conf = new Configuration();
FileSystem fs = FileSystem.get(URI.create(uri), conf);
Path[] paths = new Path[args.length];
for(int i = 0; i < paths.length; i++){
paths[i] = new Path(args[i]);
}
FileStatus[] status = fs.listStatus(paths);
Path[] listedPaths = FileUtil.stat2Paths(status);
for(Path p : listedPaths){
System.out.println(p);

}
}


}

显示Hadoop文件系统中一组路径的文件信息

标签:

原文地址:http://blog.csdn.net/u012965373/article/details/43912823

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!