溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Hadoop學(xué)習(xí)--FileUtil工具類使用--day04

發(fā)布時(shí)間:2020-07-15 20:10:58 來源:網(wǎng)絡(luò) 閱讀:978 作者:zhicx 欄目:大數(shù)據(jù)

import java.io.ByteArrayOutputStream;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.InputStream;

import java.net.URL;


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.FsUrlStreamHandlerFactory;

import org.apache.hadoop.fs.Path;

import org.apache.hadoop.io.IOUtils;

import org.junit.Test;


public class append {


/**

* 通過API實(shí)現(xiàn)append追加操作

* @author Administrator

* [hadoop@hadoop01 ~]$ hdfs dfs -chmod -R a+w /user/hadoop

* [hadoop@hadoop01 ~]$ hdfs dfs -ls -R /

*

*/

@Test

public void appendfile() throws Exception {

//創(chuàng)建configuration對象,有個(gè)默認(rèn)的加載順序,先從core-default.xml,再到src目錄中的文件,這里

//我們給定了

        Configuration conf = new Configuration();

//通過conf的configuration對象創(chuàng)建了該分布式文件系統(tǒng)fs,默認(rèn)如果不指定文件的話為本地文件系統(tǒng)

        FileSystem fs = FileSystem.get(conf);

        //定義一個(gè)URL的字符串

        String file = "hdfs://hadoop01:9000/user/hadoop/data/hello.txt";

        //通過一個(gè)URL的字符串構(gòu)建一個(gè)path對象

        Path path = new Path(file);

        FSDataOutputStream out = fs.append(path);

        out.writeChars("chuck\r\n");

        System.out.println(out.toString());

        out.close();

   }

}


向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI