我是靠谱客的博主 追寻流沙,最近开发中收集的这篇文章主要介绍java hdfs 删除_Java HDFS文件系统 读取写入删除,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

FileSystem是Hadoop提供的一个通用的文件系统API, Hadoop文件系统中通过Hadoop Path 对象(而非java.io.File 对象,因为它的语义与本地文件系统联系太紧密)来代表文件。可以将路径视为一个Hadoop 文件系统URI,如hdfs://localhost/user/ tom/ quangle. txt。下面就用最简单的方法来举例java 读取,删除,写入文件到hdfs。

先贴一下maven依赖

org.apache.hadoop

hadoop-common

2.7.7

org.apache.hadoop

hadoop-hdfs

2.7.7

org.apache.hadoop

hadoop-client

2.7.7

1.java hdfs 创建文件夹

FileSystem fs = null;

try {

Configuration config = new Configuration();

fs = FileSystem.get(URI.create("hdfs://hadoopMaster:9000"), config);

Path path = new Path("/tmp");

if (!fs.exists(path)) {

fs.mkdirs(path);

}

fs.close();

} catch (Throwable e) {

logger.error("出现异常", e);

}

2.java hdfs写入文件

FileSystem fs = null;

FSDataOutputStream fsDataOutputStream = null;

try {

fs = FileSystem.get(URI.create("hdfs://hadoopMaster:9000"), config);

Path path = new Path("/tmp");

if (!fs.exists(path)) {

fs.mkdirs(path);

}

fsDataOutputStream = fs.create(new Path("/tmp/itxw.txt"));

byte[] buff = "哈哈IT学问网".getBytes("UTF-8");

fsDataOutputStream.write(buff);

fsDataOutputStream.flush();

fsDataOutputStream.close();

fs.close();

} catch (Throwable e) {

logger.error("出现异常", e);

}

3.java hdfs删除文件

FileSystem fs = null;

FSDataOutputStream fsDataOutputStream = null;

try {

fs = FileSystem.get(URI.create("hdfs://hadoopMaster:9000"), config);

fs.delete(new Path("/tmp/itxw.txw"),false);//第二个参数表示是否递归删除

fs.close();

} catch (Throwable e) {

logger.error("出现异常", e);

}

4.java hdfs 读取文件

FileSystem fs = null;

FSDataInputStream fsDataInputStream = null;

try {

fs = FileSystem.get(URI.create("hdfs://hadoopMaster:9000"), config);

fsDataInputStream =fs.open(new Path("/tmp/itxw.txw"));

String content=IOUtils.toString(fsDataInputStream, "utf-8");

System.out.println(content);

fsDataInputStream.flush();

fsDataInputStream.close();

fs.close();

} catch (Throwable e) {

logger.error("出现异常", e);

}

最后

以上就是追寻流沙为你收集整理的java hdfs 删除_Java HDFS文件系统 读取写入删除的全部内容,希望文章能够帮你解决java hdfs 删除_Java HDFS文件系统 读取写入删除所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部