这篇文章主要介绍了HDFS如何实现读写操作,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
成都创新互联公司-专业网站定制、快速模板网站建设、高性价比长寿网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式长寿网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖长寿地区。费用合理售后完善,10年实体公司更值得信赖。import java.io.OutputStream;
import java.net.URI;
import java.net.URL;
import org.apache.commons.io.IOUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FSDataInputStream;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.FsUrlStreamHandlerFactory;
import org.apache.hadoop.fs.Path;
public class HdfsTest {
public static void main(String[] args) throws Exception {
write();
}
public static void read1(String url) throws Exception {
URL.setURLStreamHandlerFactory(new FsUrlStreamHandlerFactory());
System.out.println(IOUtils.toString(new URL(url).openStream()));
}
public static void read2(String url) throws Exception {
Configuration conf = new Configuration();
FileSystem fs = FileSystem.get(URI.create(url), conf);
FSDataInputStream is = fs.open(new Path(url));
System.out.println(IOUtils.toString(is));
is.close();
fs.close();
}
public static void write() throws Exception {
String hdfsFile = "hdfs://192.168.202.134:9000/test/text2.txt";
Configuration conf = new Configuration();
FileSystem fs = FileSystem.get(URI.create(hdfsFile), conf, "andy");
OutputStream out = fs.create(new Path(hdfsFile), true);
out.write("new file text2.txt".getBytes());
out.close();
fs.close();
read1(hdfsFile);
read2(hdfsFile);
}
}
感谢你能够认真阅读完这篇文章,希望小编分享的“HDFS如何实现读写操作”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联-成都网站建设公司行业资讯频道,更多相关知识等着你来学习!