9.HDFS的API使用

HDFS 客户端

1 环境准备

前三项可选,我这里连接的还是之前的虚拟机上的hadoop。

1)根据自己的操作系统,选择对应的编译后的hadoop jar包到非中文路径。

2)配置HADOOP_HOME环境变量

9.HDFS的API使用_第1张图片

3)配置Path环境变量

9.HDFS的API使用_第2张图片

4)创建maven工程,这里使用idea工具

5)导入pom依赖

<dependencies>
    <dependency>
        <groupId>junitgroupId>
        <artifactId>junitartifactId>
        <version>RELEASEversion>
    dependency>
    <dependency>
        <groupId>org.apache.logging.log4jgroupId>
        <artifactId>log4j-coreartifactId>
        <version>2.8.2version>
    dependency>
    <dependency>
        <groupId>org.apache.hadoopgroupId>
        <artifactId>hadoop-commonartifactId>
        <version>2.7.2version>
    dependency>
    <dependency>
        <groupId>org.apache.hadoopgroupId>
        <artifactId>hadoop-clientartifactId>
        <version>2.7.2version>
    dependency>
    <dependency>
        <groupId>org.apache.hadoopgroupId>
        <artifactId>hadoop-hdfsartifactId>
        <version>2.7.2version>
    dependency>
    <dependency>
        <groupId>jdk.toolsgroupId>
        <artifactId>jdk.toolsartifactId>
        <version>1.8version>
        <scope>systemscope>
        <systemPath>${JAVA_HOME}/lib/tools.jarsystemPath>
    dependency>
dependencies>

注:如果${JAVA_HOME}爆红,可以自己指定路径。

9.HDFS的API使用_第3张图片

修改为:

<dependency>
    <groupId>jdk.toolsgroupId>
    <artifactId>jdk.toolsartifactId>
    <version>1.8version>
    <scope>systemscope>
    <systemPath>D:/develop/java/jdk1.8/lib/tools.jarsystemPath>
dependency>

6)配置log4j.properties文件

在resource下创建文件: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

7)创建类HDFSClient

public static void main(String[] args) throws IOException {
     
    //1.获取hdfs客户端对象
    Configuration conf = new Configuration();
    conf.set("fs.defaultFS", "hdfs://hadoop02:9000");
    FileSystem fileSystem = FileSystem.get(conf);
    //2.在hdfs上创建路径
    fileSystem.mkdirs(new Path("/temp/dashen/"));
    fileSystem.close();
    System.out.println("HdfsClient执行结束!");

}

启动报错:

image-20201230223158258

原因:用户登陆的权限问题。

解决方案1:添加vm参数

9.HDFS的API使用_第4张图片

结果:

9.HDFS的API使用_第5张图片

解决方式2:发现过于麻烦,修改代码:

package com.it.hdfs;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;

/**
 * @author : code1997
 * @date :2020-12-2020/12/30 22:09
 */
public class HdfsClient {
     
    public static void main(String[] args) throws IOException, URISyntaxException, InterruptedException {
     
        //1.获取hdfs客户端对象
        Configuration conf = new Configuration();
        FileSystem fileSystem = FileSystem.get(new URI("hdfs://hadoop02:9000"),conf,"code1997");
        //2.在hdfs上创建路径
        fileSystem.mkdirs(new Path("/temp1/dashen/"));
        fileSystem.close();
        System.out.println("HdfsClient执行结束!");
    }
}

问题:出现如下报错

9.HDFS的API使用_第6张图片

原因:缺少winutils.exe程序。

解决方式:安装windows下运行的支持插件。

2 HDFS的API操作

package com.it.hdfs;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.*;
import org.junit.Test;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;

/**
 * @author : code1997
 * @date :2020-12-2020/12/30 22:48
 */
public class ApiTest {
     
    /**
     * 文件上传
     * 参数优先级排序:可以複製一下hdfs-site.xml到資源路径下,来进行测试。
     * 1)客户端代码中设置的值
     * 2)ClassPath下的用户自定义配置文件
     * 3)然后是服务器的默认配置
     */
    @Test
    public void testCopyFromLocalFile() throws IOException, InterruptedException, URISyntaxException {
     
        // 1 获取文件系统
        Configuration configuration = new Configuration();
        configuration.set("dfs.replication", "2");
        FileSystem fs = FileSystem.get(new URI("hdfs://hadoop02:9000"), configuration, "code1997");
        // 2 上传文件
        fs.copyFromLocalFile(new Path("e:/大神.txt"), new Path("/大神3.txt"));
        // 3 关闭资源
        fs.close();
        System.out.println("over");
    }

    /**
     * 文件下載
     */
    @Test
    public void testCopyToLocalFile() throws IOException, InterruptedException, URISyntaxException {
     
        // 1 获取文件系统
        Configuration configuration = new Configuration();
        FileSystem fs = FileSystem.get(new URI("hdfs://hadoop02:9000"), configuration, "code1997");
        // 2 执行下载操作
        // boolean delSrc 指是否将原文件删除
        // Path src 指要下载的文件路径
        // Path dst 指将文件下载到的路径
        // boolean useRawLocalFileSystem 是否开启文件校验
        fs.copyToLocalFile(false, new Path("/大神.txt"), new Path("e:/banhua.txt"), true);
        // 3 关闭资源
        fs.close();
    }

    /**
     * 文件夹删除
     */
    @Test
    public void testDelete() throws IOException, InterruptedException, URISyntaxException {
     
        // 1 获取文件系统
        Configuration configuration = new Configuration();
        FileSystem fs = FileSystem.get(new URI("hdfs://hadoop02:9000"), configuration, "code1997");
        // 2 执行删除
        fs.delete(new Path("/temp/"), true);
        // 3 关闭资源
        fs.close();
    }

    /**
     * 改名字
     */
    @Test
    public void testRename() throws IOException, InterruptedException, URISyntaxException {
     
        // 1 获取文件系统
        Configuration configuration = new Configuration();
        FileSystem fs = FileSystem.get(new URI("hdfs://hadoop02:9000"), configuration, "code1997");
        // 2 修改文件名称
        fs.rename(new Path("/大神.txt"), new Path("/菜鸡.txt"));
        // 3 关闭资源
        fs.close();
    }

    /**
     * 查看文件名称、权限、长度、块信息
     */
    @Test
    public void testListFiles() throws IOException, InterruptedException, URISyntaxException {
     
        // 1获取文件系统
        Configuration configuration = new Configuration();
        FileSystem fs = FileSystem.get(new URI("hdfs://hadoop02:9000"), configuration, "code1997");
        // 2 获取文件详情
        RemoteIterator<LocatedFileStatus> listFiles = fs.listFiles(new Path("/"), true);
        while (listFiles.hasNext()) {
     
            LocatedFileStatus status = listFiles.next();
            // 输出详情
            // 文件名称
            System.out.println(status.getPath().getName());
            // 长度
            System.out.println(status.getLen());
            // 权限
            System.out.println(status.getPermission());
            // 分组
            System.out.println(status.getGroup());
            // 获取存储的块信息
            BlockLocation[] blockLocations = status.getBlockLocations();
            for (BlockLocation blockLocation : blockLocations) {
     
                // 获取块存储的主机节点
                String[] hosts = blockLocation.getHosts();
                for (String host : hosts) {
     
                    System.out.println(host);
                }
            }
            System.out.println("-----------班长的分割线----------");
        }
        // 3 关闭资源
        fs.close();
    }

    /**
     * HDFS文件和文件夹判断
     */
    @Test
    public void testListStatus() throws IOException, InterruptedException, URISyntaxException {
     
        // 1 获取文件配置信息
        Configuration configuration = new Configuration();
        FileSystem fs = FileSystem.get(new URI("hdfs://hadoop02:9000"), configuration, "code1997");
        // 2 判断是文件还是文件夹
        FileStatus[] listStatus = fs.listStatus(new Path("/"));
        for (FileStatus fileStatus : listStatus) {
     
            // 如果是文件
            if (fileStatus.isFile()) {
     
                System.out.println("f:" + fileStatus.getPath().getName());
            } else {
     
                System.out.println("d:" + fileStatus.getPath().getName());
            }
        }
        // 3 关闭资源
        fs.close();
    }
}

你可能感兴趣的:(hadoop,hadoop,大数据,hdfs)