重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
小编给大家分享一下HDFS FileStatus如何检索文件和目录相关信息,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
创新互联专注于辉县网站建设服务及定制,我们拥有丰富的企业做网站经验。 热诚为您提供辉县营销型网站建设,辉县网站制作、辉县网页设计、辉县网站官网定制、小程序制作服务,打造辉县网络公司原创品牌,更为您提供辉县网站排名全网营销落地服务。
package com.lango.mapreduce.example.chainmapper; import java.io.IOException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileStatus; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; public class Test { public static void main(String[] args) throws IOException { String INPUT_PATH = "/access_data"; Test.iterFs(INPUT_PATH); } private static void iterFs(String INPUT_PATH) throws IOException { Configuration conf = new Configuration(); conf.set("fs.default.name", "hdfs://master:9000"); FileSystem hdfs = FileSystem.get(conf); Path listf = new Path(INPUT_PATH); FileStatus stats[] = hdfs.listStatus(listf); for(FileStatus f : stats){ String fsPath = f.getPath().toString(); System.out.println(fsPath); if(f.isDir()){ iterFs(fsPath); } else { System.out.println(fsPath); } } } }
看完了这篇文章,相信你对“HDFS FileStatus如何检索文件和目录相关信息”有了一定的了解,如果想了解更多相关知识,欢迎关注创新互联行业资讯频道,感谢各位的阅读!