小編給大家分享一下hadoop如何實(shí)現(xiàn)文件夾文件的創(chuàng)建與刪除,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
成都創(chuàng)新互聯(lián)主要從事成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、網(wǎng)頁設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)蓬溪,10余年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):13518219792package hadoop.test; import java.io.IOException; import java.net.URI; import java.net.URISyntaxException; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.FileSystem; import org.apache.hadoop.fs.Path; public class FileSystemTest { public static void main(String[] args) throws IOException, URISyntaxException { Configuration cfg = new Configuration(); FileSystem fs = FileSystem.get(new URI("hdfs://data1:9000"),cfg); //fs.open(new Path(new URI("hdfs://data1:9000"))); boolean flgs = fs.exists(new Path(new URI("/hgs"))); if(flgs) { boolean flg = fs.isDirectory(new Path(new URI("/hgs"))); System.out.println(flg); //這里會報(bào)錯(cuò),添加 環(huán)境變量 HADOOP_USER_NAME=root //從本地copy一個(gè)文件到hdfs //fs.copyFromLocalFile(true,new Path("e:\\install.ini"), new Path("/hgs/tmp.txt")); //拷貝hdfs文件到本地 //fs.copyToLocalFile(false,new Path("hdfs://data1:9000/hgs/tmp.txt"),new Path("e:\\tmp.txt"),true ); //創(chuàng)建文件夾 //boolean fl = fs.mkdirs(new Path("/hgs/hgstmp")); //System.out.println(fl); boolean f = fs.delete(new Path("/hgs/hgstmp"), true); System.out.println(f); } System.out.println(flgs); fs.close(); } }
以上是“hadoop如何實(shí)現(xiàn)文件夾文件的創(chuàng)建與刪除”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注創(chuàng)新互聯(lián)-成都網(wǎng)站建設(shè)公司行業(yè)資訊頻道!