要讀取Hadoop文件路徑,可以使用Hadoop的文件系統API來實現。具體步驟如下:
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.fs.FSDataInputStream;
Configuration conf = new Configuration();
FileSystem fs = FileSystem.get(conf);
Path filePath = new Path("hdfs://your_hadoop_server/path/to/file");
FSDataInputStream inputStream = fs.open(filePath);
byte[] buffer = new byte[1024];
int bytesRead = 0;
while ((bytesRead = inputStream.read(buffer)) > 0) {
System.out.write(buffer, 0, bytesRead);
}
inputStream.close();
fs.close();
通過上述步驟,可以成功讀取Hadoop文件路徑中的文件內容。請注意,需要替換代碼中的"hdfs://your_hadoop_server/path/to/file"為實際的Hadoop文件路徑。