真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

怎么從HadoopURL讀取數(shù)據(jù)

本篇內(nèi)容主要講解“怎么從Hadoop URL讀取數(shù)據(jù)”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么從Hadoop URL讀取數(shù)據(jù)”吧!

創(chuàng)新互聯(lián)建站是一家集網(wǎng)站建設,象山企業(yè)網(wǎng)站建設,象山品牌網(wǎng)站建設,網(wǎng)站定制,象山網(wǎng)站建設報價,網(wǎng)絡營銷,網(wǎng)絡優(yōu)化,象山網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強企業(yè)競爭力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時我們時刻保持專業(yè)、時尚、前沿,時刻以成就客戶成長自我,堅持不斷學習、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實用型網(wǎng)站。

1,編寫代碼

import java.io.*;
import java.net.URL;

import org.apache.hadoop.fs.FsUrlStreamHandlerFactory;
import org.apache.hadoop.io.IOUtils;

public class URLCat {
    static {
        URL.setURLStreamHandlerFactory(new FsUrlStreamHandlerFactory());
    }
    
    public static void main(String[] args) throws Exception {
        InputStream in = null;
        try {
            in = new URL(args[0]).openStream();
            IOUtils.copyBytes(in, System.out, 4096, false);
        } finally {
            IOUtils.closeStream(in);
        }
    }
}
 


2,編譯Java代碼

  1. $ Hadoopcom.sun.tools.javac.Mian -d classes URLCat.java  

  2. // then the class files will be generated in the directory of classes  

3,打包成jar包

  1. jar cf URLCat.jar classes/URLCat.class   

  2. // then we will get the URLCat.jar, the source is from classes/URLCat.class  


4,運行jar包

hadoop jar URLCat.jar URLCat hdfs://10.10.12.171/input/WordCount/file1  

Result:

  1. hadoop  ok  

  2. hadoop  fail  

  3. hadoop  2.3  

可見hdfs://10.10.12.171/input/WordCount/file1的內(nèi)容就輸出到了標準輸出了。

到此,相信大家對“怎么從Hadoop URL讀取數(shù)據(jù)”有了更深的了解,不妨來實際操作一番吧!這里是創(chuàng)新互聯(lián)網(wǎng)站,更多相關內(nèi)容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!


網(wǎng)站題目:怎么從HadoopURL讀取數(shù)據(jù)
網(wǎng)站URL:http://weahome.cn/article/gshiog.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部