首页 > 其他 > 详细

18 ? 21

时间:2017-10-30 10:30:04      阅读:209      评论:0      收藏:0      [点我收藏+]

 

 

$echo "This is for MyHDFSCat" > test.txt
$bin/hadoop fs -put test.txt  /test.txt


JAVA
...
public class MyHDFSStat extends Configured implements Tool
{
    public int run(String[] args) throws Exception{
        String url = null;
        if (args.lrlength > 0){
            uri = args[0];
        }

        Configuration conf = this.getConf();
        FileSystem fs=FileSystem.get(URI.create(uri),conf);
        FileStatus status = fs.getFileStatus(new Path(uri));
        
        System.out.printf("path:%s\n",status.getPath());

        System.out.printf("length:%d\n",status.getLen());

        return 0;
        
    }

}


public static void main(String[] args) throws Exception{
    int exitCode() = ToolRunner.run(new MyHDFSStat(), args);
    System.exit(exitCode);
}

...
JAVA
myhdfsstat.jar

$bin/hadoop jar myhdfsstat.jar com.cisco.MyHdfsStat hdfs:///test.txt


path: hdfs://master:9000/test.txt
length: 18

 

 

This is for MyHDFSCat = 18+3

18 ? 21

原文:http://www.cnblogs.com/yuanjiangw/p/7753296.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!