Hadoop API

1.创建maven工程

在pom.xml文件中添加如下依赖

<dependencies>
    <dependency>
        <groupId>org.apache.hadoop</groupId>
        <artifactId>hadoop-client</artifactId>
        <version>3.1.3</version>
    </dependency>
    <!--    安装java测试框架-->
    <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.13.2</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-nop -->
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-nop</artifactId>
        <version>1.7.25</version>
    </dependency>
</dependencies>

2.在项目的resources目录下,创建一个文件,命名为 log4j.properties ,在文中填入以下内容

log4j.rootLogger=INFO, stdout
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
log4j.appender.stdout.layout.ConversionPattern=%d %p [%c] - %m%n
log4j.appender.logfile=org.apache.log4j.FileAppender
log4j.appender.logfile.File=target/spring.log
log4j.appender.logfile.layout=org.apache.log4j.PatternLayout
log4j.appender.logfile.layout.ConversionPattern=%d %p [%c] - %m%n

3.API操作代码

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.*;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;

import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.Arrays;

/**
 * 客户端代码的常用套路
 * 获取一个客户端对象
 * 执行相关操作命令
 * 关闭资源
 * **/
public class HdfsClient {
    FileSystem fs;

    @Before
    public void into() throws URISyntaxException, IOException, InterruptedException {
        //链接集群NameNode地址
        URI uri = new URI("hdfs://hadoop:8020");
        //创建一个配置文件
        Configuration configuration = new Configuration();
//        设置集群副本数量为2
//        configuration.set("dfs.replication","2");
        //创建一个用户
        String user = "root";
        fs = FileSystem.get(uri, configuration, user);
    }
    @Test
    //在HDFS上创建一个文件
    public void testMkdir() throws IOException {
        fs.mkdirs(new Path("/"));
    }

    @Test
    //将一个文件拷贝到HDFS
    public void testPut() throws IOException {
        fs.copyFromLocalFile(true, new Path("D://"), new Path("/"));
    }

    @Test
    //将一个文件下载到本地
    public void testGet() throws IOException {
        fs.copyToLocalFile(new Path("/fs.xml"), new Path("D://"));
    }
    @Test
    //删除HDFS文件
    public void testRm() throws IOException {
        fs.delete(new Path("/"));
    }
    @Test
    //文件的移动和改名
    public void testMv() throws IOException {
        //改名
        fs.rename(new Path("/"),new Path("/"));
        //移动
        fs.rename(new Path("/"),new Path("/"));
    }
    @Test
    //查看文件详情
    public void testxq() throws IOException {
        RemoteIterator<LocatedFileStatus> listflie = fs.listFiles(new Path("/"), true);
        while(listflie.hasNext()) {
            LocatedFileStatus fileStatus = listflie.next();

            System.out.println("------------"+fileStatus.getPath()+"-------------");
            System.out.println(fileStatus.getPermission());
            System.out.println(fileStatus.getOwner());
            System.out.println(fileStatus.getGroup());
            System.out.println(fileStatus.getLen());
            System.out.println(fileStatus.getModificationTime());
            System.out.println(fileStatus.getReplication());
            System.out.println(fileStatus.getBlockSize());
            System.out.println(fileStatus.getPath().getName());

            //由于返回块信息,只会返回一个地址,所以我们要对他toString()
            BlockLocation[] blockLocations = fileStatus.getBlockLocations();
            System.out.println(Arrays.toString(blockLocations));
        }
    }

    @Test
    //查看并判断一个目录下的文件是文件夹还是文件
    public void testfile() throws IOException {
        FileStatus[] fileStatuses = fs.listStatus(new Path("/"));

            for(FileStatus fileStatus : fileStatuses) {
                if (fileStatus.isFile()) {
                    System.out.println("文件:"+fileStatus.getPath().getName());
                }else {
                    System.out.println("目录:"+fileStatus.getPath().getName());
                }
            }
    }

    @After
    public void close() throws IOException {
        fs.close();
    }
}

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值