CreateFile
生活随笔
收集整理的這篇文章主要介紹了
CreateFile
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
import org.apache.hadoop.conf.*; import org.apache.hadoop.fs.*;import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; /**** 注意:文件創(chuàng)建時,可能會報Permission denied錯誤,其中一個解決辦法是 給要寫入的文件所在目錄增加其他人寫的權(quán)限, 在Linix下輸入命令 $ hdfs dfs -chmod o+w /user/ud16* @author **/public class CreateFile {public static void main(String[] args) throws URISyntaxException, IOException, InterruptedException {Configuration conf=new Configuration();//注意修改為自己的IPURI uri=new URI("hdfs://192.168.1.100:9000");//get()的第三個參數(shù)"hadoop"為Linux的用戶名,注意修改FileSystem fs=FileSystem.get(uri,conf,"hadoop");//定義一個要創(chuàng)建文件的路徑Path dfs=new Path("/user/hadoop/myfile1");FSDataOutputStream newFile=fs.create(dfs,true);//寫入的內(nèi)容newFile.writeBytes("20160216048 raodi");}}
轉(zhuǎn)載于:https://www.cnblogs.com/Raodi/p/11054412.html
總結(jié)
以上是生活随笔為你收集整理的CreateFile的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 题解 【国家集训队2011】数颜色
- 下一篇: 人工智能-机器学习之Selenium(c