用流的方式来操作hdfs上的文件

 

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.net.URI;

import org.apache.commons.io.IOUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FSDataInputStream;
import org.apache.hadoop.fs.FSDataOutputStream;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
import org.junit.Before;
import org.junit.Test;


/**
 * 用流的方式来操作hdfs上的文件
 * 可以实现读取指定偏移量范围的数据
 * @author
 *
 */
public class HdfsStreamAccess {
    
    FileSystem fs = null;
    Configuration conf = null;
    
    @Before
    public void init() throws Exception{
        
        conf = new Configuration();
        //拿到一个文件系统操作的客户端实例对象
//        fs = FileSystem.get(conf);
        //可以直接传入 uri和用户身份
        fs = FileSystem.get(new URI("hdfs://node2:8020"),conf,"root");
    }
    

    /**
     * 通过流的方式上传文件到hdfs
     * @throws Exception
     */
    @Test
    public void testUpload() throws Exception {
        
        FSDataOutputStream outputStream = fs.create(new Path("/aaa"), true);
        FileInputStream inputStream = new FileInputStream("d:/bbb");
        
        IOUtils.copy(inputStream, outputStream);
        
    }
    
    
    /**
     * 通过流的方式获取hdfs上数据
     * @throws Exception
     */
    @Test
    public void testDownLoad() throws Exception {
        
        FSDataInputStream inputStream = fs.open(new Path("/aaa"));        
        
        FileOutputStream outputStream = new FileOutputStream("d:/ccc");
        
        IOUtils.copy(inputStream, outputStream);
        
    }
    
    
    @Test
    public void testRandomAccess() throws Exception{
        
        FSDataInputStream inputStream = fs.open(new Path("/aaa"));
    
        inputStream.seek(12);
        
        FileOutputStream outputStream = new FileOutputStream("d:/ddd");
        
        IOUtils.copy(inputStream, outputStream);
        
        
    }
    
    
    
    /**
     * 显示hdfs上文件的内容
     * @throws IOException 
     * @throws IllegalArgumentException 
     */
    @Test
    public void testCat() throws IllegalArgumentException, IOException{
        
        FSDataInputStream in = fs.open(new Path("/aaa"));
        
        IOUtils.copy(in, System.out);
        
//        IOUtils.copyBytes(in, System.out, 1024);
    }
    
}

 

转载于:https://www.cnblogs.com/Damon-Luo/p/8616434.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值