编程实现从hadoop上下载

Posted Kooing

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编程实现从hadoop上下载相关的知识,希望对你有一定的参考价值。

下载

package hadoopTest;

import java.io.File;
import java.io.IOException;

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

public class Merge {
    Path inputPath = new Path("/test4/text3");
    Path outputPath = new Path("e:/test1/text3");
    static int number = 0;

    public void doMerge() throws IOException {
        Configuration config = new Configuration();
        config.set("fs.default.name", "hdfs://192.168.20.128:9000");
        FileSystem fs = FileSystem.get(config);
        if (Merge.isExit(outputPath.toString())) {// 已经存在创建副本
            String tempPath = outputPath.toString();
            String[] paths = tempPath.split("\\\\/");
            number++;
            String newPath = paths[paths.length - 1] + "副本" + number;
            for (; Merge.isExit("e:/test1/" + newPath);) {
                number++;
                newPath = paths[paths.length - 1] + "副本" + number;
            }
            Path newOutputPath = new Path("e:/test1/" + newPath);
            fs.copyToLocalFile(false, inputPath, newOutputPath);
        } else {// 不存在
            fs.copyToLocalFile(false, inputPath, outputPath);
        }
    }

    private static boolean isExit(String path) {// 判断文件是否存在
        File file = new File(path);
        boolean exit = file.exists();
        return exit;
    }
}
View Code

 

以上是关于编程实现从hadoop上下载的主要内容,如果未能解决你的问题,请参考以下文章

Hadoop:读取hdfs上zip压缩包并解压到hdfs的实现代码

从mysql的片段中加载ListView

怎么从git分支上下载代码

从github上下载代码到本地

从Git上下载代码到本地

写个小程序从FTP上下载文件