Configured

本文介绍如何使用Hadoop API在Hadoop集群上写入文件。通过具体代码示例,详细展示了Configuration和FileSystem类的使用,以及如何从本地文件系统读取数据并将其写入到Hadoop的分布式文件系统中。
摘要由CSDN通过智能技术生成

Configuration、FileSystem

小白写博客,在hadoop集群写入文件,看完configuration和configured等的源码之后的心德小白第一天写博客在这里插入图片描述

hadoop集群写入文件

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;

/**
 * hadoop jar   Hadoop_test-1.0-SNAPSHOT.jar  com.jxlg.hdfs.ConfigHdfs
 * -D input=/etc/passwd -D  output=passwd/passwd.txt
 *
 */
import java.io.FileInputStream;
import java.io.OutputStream;

public class ConfigHdfs extends Configured implements Tool {
    @Override
    public int run(String[] strings) throws Exception {
        Configuration conf=getConf();
        String input =conf.get("input");
        String output=conf.get("output");
       FileSystem fs = FileSystem.get(conf);

        FileInputStream fis=new FileInputStream(input);
        OutputStream os=fs.create(new Path(output));
        byte []b=new byte[1024];
        int len;

        while((len=fis.read(b))!=-1){
            os.write(b,0,len);
            os.flush();
        }
        if(os!=null)os.close();
        if(fis!=null)fis.close();
        return 0;
    }
    public  static void main(String[] args) throws Exception {
       int n= new ToolRunner().run(new ConfigHdfs(),args);
       System.exit(n);

    }
}
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值