Hadoop提供了多種方式來查看文件內容,以下是幾種常用的方法:
hadoop fs -cat <文件路徑>
例如,要查看Hadoop文件系統中的/test/test.txt文件的內容,可以運行以下命令:
hadoop fs -cat /test/test.txt
hadoop fs -text <文件路徑>
例如,要將Hadoop文件系統中的/test/test.txt文件的內容輸出到標準輸出,可以運行以下命令:
hadoop fs -text /test/test.txt
hadoop fs -get <Hadoop文件路徑> <本地文件路徑>
例如,要將Hadoop文件系統中的/test/test.txt文件復制到本地文件系統并查看,可以運行以下命令:
hadoop fs -get /test/test.txt /tmp/test.txt
cat /tmp/test.txt