中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

如何使用java下載hdfs文件

小億
119
2024-03-27 15:14:54
欄目: 編程語言

要使用Java下載HDFS文件,可以使用Hadoop的FileSystem API來實現。以下是一個簡單的示例代碼:

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;

public class HDFSFileDownload {

    public static void main(String[] args) {
        Configuration conf = new Configuration();
        conf.set("fs.defaultFS", "hdfs://localhost:9000");

        try {
            FileSystem fs = FileSystem.get(conf);
            Path srcPath = new Path("/path/to/source/file/in/hdfs");
            Path dstPath = new Path("/path/to/destination/file/on/local/machine");

            if (!fs.exists(srcPath)) {
                System.out.println("Source file does not exist");
                return;
            }

            InputStream in = fs.open(srcPath);
            BufferedInputStream reader = new BufferedInputStream(in);
            BufferedOutputStream writer = new BufferedOutputStream(new FileOutputStream(dstPath.toString()));

            byte[] buffer = new byte[4096];
            int bytesRead = 0;
            while ((bytesRead = reader.read(buffer)) > 0) {
                writer.write(buffer, 0, bytesRead);
            }

            reader.close();
            writer.close();
            fs.close();

            System.out.println("File downloaded successfully");
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

在這個示例中,首先創建一個Hadoop的Configuration對象,并設置HDFS的地址。然后通過FileSystem.get方法獲取一個FileSystem對象。接著指定HDFS中的源文件路徑和本地機器上的目標文件路徑,并通過FileSystem的open方法打開源文件。通過BufferedInputStream和BufferedOutputStream來讀取和寫入文件內容,并最終將文件下載到本地機器上。

請記得替換示例中的"/path/to/source/file/in/hdfs"和"/path/to/destination/file/on/local/machine"為實際的文件路徑。此外,還要根據HDFS的配置修改"fs.defaultFS"的值。

0
明光市| 黎城县| 翁牛特旗| 库伦旗| 庆云县| 稻城县| 五华县| 丰县| 贺兰县| 临江市| 德令哈市| 垫江县| 霍林郭勒市| 白城市| 赫章县| 龙游县| 澄迈县| 定州市| 辽中县| 岳池县| 建宁县| 兰州市| 酉阳| 安国市| 顺义区| 稷山县| 周至县| 奉化市| 微博| 洛川县| 抚州市| 洞头县| 沿河| 西华县| 马边| 濮阳县| 喀喇沁旗| 涪陵区| 香格里拉县| 仪陇县| 凤庆县|