hdfs的相关api
2020-12-18 18:32
标签:files 图片 dfs mic end except 目录 roo source 根据hdfs的版本引用相关的hdfs依赖 将hdfs中的 简单编码测试下 hdfs的相关api 标签:files 图片 dfs mic end except 目录 roo source 原文地址:https://www.cnblogs.com/shouyaya/p/14130657.html连接hdfs
core-site.xml
和hdfs-site.xml
放进项目的resources目录里public class Connection {
public static void main(String[] args) throws IOException, URISyntaxException, InterruptedException {
Configuration configuration=new Configuration();
System.setProperty("HADOOP_USER_NAME", "root");
FileSystem fs = FileSystem.get(configuration);
System.out.println(fs.getHomeDirectory());
//拿到FileSystem后可以简单操作下hdfs,若是运行成功则代表连接成功!
}
}