您好,登錄后才能下訂單哦!
小編給大家分享一下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如何檢索文件和目錄相關信息”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。