版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
1、實(shí)驗(yàn)2熟悉常用的HDFS操作1 實(shí)驗(yàn)?zāi)康?.理解HDFS在Hadoop體系結(jié)構(gòu)中的角色;2.熟練使用HDFS操作常用的Shell命令;3.熟悉HDFS操作常用的Java API。2 實(shí)驗(yàn)平臺操作系統(tǒng):LinuxHadoop版本:2.6.0或以上版本JDK版本:1.6或以上版本Java IDE:Eclipse3 實(shí)驗(yàn)內(nèi)容和要求1. 編程實(shí)現(xiàn)以下指定功能,并利用Hadoop提供的Shell命令完成相同任務(wù):提示:1) 部分Shell命令的參數(shù)路徑只能是本地路徑或者HDFS路徑。2) 若Shell命令的參數(shù)既可以是本地路徑,也可以是HDFS路徑時,務(wù)必注意區(qū)分。為保證操作正確,可指定路徑前綴 hdf
2、s:/ 或者 file:/3) 注意區(qū)分相對路徑與絕對路徑4) 具體命令的說明可參考教材或 (1) 向HDFS中上傳任意文本文件,如果指定的文件在HDFS中已經(jīng)存在,由用戶指定是追加到原有文件末尾還是覆蓋原有的文件;Shell命令:檢查文件是否存在: ./hdfs dfs -test -e text.txt(執(zhí)行完這一句不會輸出結(jié)果,需要繼續(xù)輸入命令 echo $?)追加命令: ./hdfs dfs -appendToFile local.txt text.txt覆蓋命令1: ./hdfs dfs -copyFromLocal -f local.txt text.txt覆蓋命令2: ./hdf
3、s dfs -cp -f file:/home/hadoop/local.txt text.txt也可以使用如下命令實(shí)現(xiàn):(如下代碼可視為一行代碼,在終端中輸入第一行代碼后,直到輸入 fi 才會真正執(zhí)行):if $(./hdfs dfs -test -e text.txt);then $(./hdfs dfs -appendToFile local.txt text.txt);else $(./hdfs dfs -copyFromLocal -f local.txt text.txt);fiJava代碼:import org.apache.hadoop.conf.Configuration;i
4、mport org.apache.hadoop.fs.*;import java.io.*;public class HDFSApi /* * 判斷路徑是否存在 */ public static boolean test(Configuration conf, String path) throws IOException FileSystem fs = FileSystem.get(conf); return fs.exists(new Path(path); /* * 復(fù)制文件到指定路徑 * 若路徑已存在,則進(jìn)行覆蓋 */ public static void copyFromLocalF
5、ile(Configuration conf, String localFilePath, String remoteFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path localPath = new Path(localFilePath); Path remotePath = new Path(remoteFilePath); /* fs.copyFromLocalFile 第一個參數(shù)表示是否刪除源文件,第二個參數(shù)表示是否覆蓋 */ fs.copyFromLocalFile(false, true,
6、localPath, remotePath); fs.close(); /* * 追加文件內(nèi)容 */ public static void appendToFile(Configuration conf, String localFilePath, String remoteFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new Path(remoteFilePath); /* 創(chuàng)建一個文件讀入流 */ FileInputStream in = new FileInputS
7、tream(localFilePath); /* 創(chuàng)建一個文件輸出流,輸出的內(nèi)容將追加到文件末尾 */ FSDataOutputStream out = fs.append(remotePath); /* 讀寫文件內(nèi)容 */ byte data = new byte1024; int read = -1; while ( (read = in.read(data) 0 ) out.write(data, 0, read); out.close(); in.close(); fs.close(); /* * 主函數(shù) */public static void main(String args) C
8、onfiguration conf = new Configuration(); conf.set(,hdfs:/localhost:9000);String localFilePath = /home/hadoop/text.txt; / 本地路徑String remoteFilePath = /user/hadoop/text.txt; / HDFS路徑String choice = append; / 若文件存在則追加到文件末尾/String choice = overwrite; / 若文件存在則覆蓋try /* 判斷文件是否存在 */Boolean fi
9、leExists = false;if (HDFSApi.test(conf, remoteFilePath) fileExists = true;System.out.println(remoteFilePath + 已存在.); else System.out.println(remoteFilePath + 不存在.);/* 進(jìn)行處理 */if ( !fileExists) / 文件不存在,則上傳HDFSApi.copyFromLocalFile(conf, localFilePath, remoteFilePath);System.out.println(localFilePath +
10、 已上傳至 + remoteFilePath); else if ( choice.equals(overwrite) ) / 選擇覆蓋HDFSApi.copyFromLocalFile(conf, localFilePath, remoteFilePath);System.out.println(localFilePath + 已覆蓋 + remoteFilePath); else if ( choice.equals(append) ) / 選擇追加HDFSApi.appendToFile(conf, localFilePath, remoteFilePath);System.out.pr
11、intln(localFilePath + 已追加至 + remoteFilePath); catch (Exception e) e.printStackTrace();(2) 從HDFS中下載指定文件,如果本地文件與要下載的文件名稱相同,則自動對下載的文件重命名;Shell命令:if $(./hdfs dfs -test -e file:/home/hadoop/text.txt);then $(./hdfs dfs -copyToLocal text.txt ./text2.txt); else $(./hdfs dfs -copyToLocal text.txt ./text.txt)
12、; fiJava代碼:import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.*;import java.io.*;public class HDFSApi /* * 下載文件到本地 * 判斷本地路徑是否已存在,若已存在,則自動進(jìn)行重命名 */ public static void copyToLocal(Configuration conf, String remoteFilePath, String localFilePath) throws IOException FileSystem fs = Fi
13、leSystem.get(conf); Path remotePath = new Path(remoteFilePath); File f = new File(localFilePath); /* 如果文件名存在,自動重命名(在文件名后面加上 _0, _1 .) */ if (f.exists() System.out.println(localFilePath + 已存在.); Integer i = 0; while (true) f = new File(localFilePath + _ + i.toString(); if (!f.exists() localFilePath =
14、 localFilePath + _ + i.toString(); break; System.out.println(將重新命名為: + localFilePath); / 下載文件到本地 Path localPath = new Path(localFilePath); fs.copyToLocalFile(remotePath, localPath); fs.close(); /* * 主函數(shù) */public static void main(String args) Configuration conf = new Configuration(); conf.set(fs.defa
15、,hdfs:/localhost:9000);String localFilePath = /home/hadoop/text.txt; / 本地路徑String remoteFilePath = /user/hadoop/text.txt; / HDFS路徑try HDFSApi.copyToLocal(conf, remoteFilePath, localFilePath);System.out.println(下載完成); catch (Exception e) e.printStackTrace();(3) 將HDFS中指定文件的內(nèi)容輸出到終端中;Shell命令:./h
16、dfs dfs -cat text.txtJava代碼:import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.*;import java.io.*;public class HDFSApi /* * 讀取文件內(nèi)容 */ public static void cat(Configuration conf, String remoteFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new
17、Path(remoteFilePath); FSDataInputStream in = fs.open(remotePath); BufferedReader d = new BufferedReader(new InputStreamReader(in); String line = null; while ( (line = d.readLine() != null ) System.out.println(line); d.close(); in.close(); fs.close(); /* * 主函數(shù) */public static void main(String args) C
18、onfiguration conf = new Configuration(); conf.set(,hdfs:/localhost:9000);String remoteFilePath = /user/hadoop/text.txt; / HDFS路徑try System.out.println(讀取文件: + remoteFilePath);HDFSApi.cat(conf, remoteFilePath);System.out.println(n讀取完成); catch (Exception e) e.printStackTrace();(4) 顯示HDF
19、S中指定的文件的讀寫權(quán)限、大小、創(chuàng)建時間、路徑等信息;Shell命令:./hdfs dfs -ls -h text.txtJava代碼:import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.*;import java.io.*;import java.text.SimpleDateFormat;public class HDFSApi /* * 顯示指定文件的信息 */ public static void ls(Configuration conf, String remoteFilePath) thr
20、ows IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new Path(remoteFilePath); FileStatus fileStatuses = fs.listStatus(remotePath); for (FileStatus s : fileStatuses) System.out.println(路徑: + s.getPath().toString(); System.out.println(權(quán)限: + s.getPermission().toString(); System.out.
21、println(大小: + s.getLen(); /* 返回的是時間戳,轉(zhuǎn)化為時間日期格式 */ Long timeStamp = s.getModificationTime(); SimpleDateFormat format = new SimpleDateFormat(yyyy-MM-dd HH:mm:ss); String date = format.format(timeStamp); System.out.println(時間: + date); fs.close(); /* * 主函數(shù) */public static void main(String args) Configu
22、ration conf = new Configuration(); conf.set(,hdfs:/localhost:9000);String remoteFilePath = /user/hadoop/text.txt; / HDFS路徑try System.out.println(讀取文件信息: + remoteFilePath);HDFSApi.ls(conf, remoteFilePath);System.out.println(n讀取完成); catch (Exception e) e.printStackTrace();(5) 給定HDFS中某一個
23、目錄,輸出該目錄下的所有文件的讀寫權(quán)限、大小、創(chuàng)建時間、路徑等信息,如果該文件是目錄,則遞歸輸出該目錄下所有文件相關(guān)信息;Shell命令:./hdfs dfs -ls -R -h /user/hadoopJava代碼:import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.*;import java.io.*;import java.text.SimpleDateFormat;public class HDFSApi /* * 顯示指定文件夾下所有文件的信息(遞歸) */ public static voi
24、d lsDir(Configuration conf, String remoteDir) throws IOException FileSystem fs = FileSystem.get(conf); Path dirPath = new Path(remoteDir); /* 遞歸獲取目錄下的所有文件 */ RemoteIterator remoteIterator = fs.listFiles(dirPath, true); /* 輸出每個文件的信息 */ while (remoteIterator.hasNext() FileStatus s = remoteIterator.nex
25、t(); System.out.println(路徑: + s.getPath().toString(); System.out.println(權(quán)限: + s.getPermission().toString(); System.out.println(大小: + s.getLen(); /* 返回的是時間戳,轉(zhuǎn)化為時間日期格式 */ Long timeStamp = s.getModificationTime(); SimpleDateFormat format = new SimpleDateFormat(yyyy-MM-dd HH:mm:ss); String date = forma
26、t.format(timeStamp); System.out.println(時間: + date); System.out.println(); fs.close(); /* * 主函數(shù) */public static void main(String args) Configuration conf = new Configuration(); conf.set(,hdfs:/localhost:9000);String remoteDir = /user/hadoop; / HDFS路徑try System.out.println(遞歸)讀取目錄下所有文件
27、的信息: + remoteDir);HDFSApi.lsDir(conf, remoteDir);System.out.println(讀取完成); catch (Exception e) e.printStackTrace();(6) 提供一個HDFS內(nèi)的文件的路徑,對該文件進(jìn)行創(chuàng)建和刪除操作。如果文件所在目錄不存在,則自動創(chuàng)建目錄;Shell命令:if $(./hdfs dfs -test -d dir1/dir2);then $(./hdfs dfs -touchz dir1/dir2/filename); else $(./hdfs dfs -mkdir -p dir1/dir2 &
28、hdfs dfs -touchz dir1/dir2/filename); fi刪除文件:./hdfs dfs -rm dir1/dir2/filenameJava代碼:import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.*;import java.io.*;public class HDFSApi /* * 判斷路徑是否存在 */ public static boolean test(Configuration conf, String path) throws IOException FileSys
29、tem fs = FileSystem.get(conf); return fs.exists(new Path(path); /* * 創(chuàng)建目錄 */ public static boolean mkdir(Configuration conf, String remoteDir) throws IOException FileSystem fs = FileSystem.get(conf); Path dirPath = new Path(remoteDir); boolean result = fs.mkdirs(dirPath); fs.close(); return result;
30、/* * 創(chuàng)建文件 */ public static void touchz(Configuration conf, String remoteFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new Path(remoteFilePath); FSDataOutputStream outputStream = fs.create(remotePath); outputStream.close(); fs.close(); /* * 刪除文件 */ public static
31、 boolean rm(Configuration conf, String remoteFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new Path(remoteFilePath); boolean result = fs.delete(remotePath, false); fs.close(); return result; /* * 主函數(shù) */public static void main(String args) Configuration conf = n
32、ew Configuration(); conf.set(,hdfs:/localhost:9000);String remoteFilePath = /user/hadoop/input/text.txt; / HDFS路徑String remoteDir = /user/hadoop/input; / HDFS路徑對應(yīng)的目錄try /* 判斷路徑是否存在,存在則刪除,否則進(jìn)行創(chuàng)建 */if ( HDFSApi.test(conf, remoteFilePath) ) HDFSApi.rm(conf, remoteFilePath); / 刪除System.ou
33、t.println(刪除路徑: + remoteFilePath); else if ( !HDFSApi.test(conf, remoteDir) ) / 若目錄不存在,則進(jìn)行創(chuàng)建HDFSApi.mkdir(conf, remoteDir);System.out.println(創(chuàng)建文件夾: + remoteDir);HDFSApi.touchz(conf, remoteFilePath);System.out.println(創(chuàng)建路徑: + remoteFilePath); catch (Exception e) e.printStackTrace();(7) 提供一個HDFS的目錄的路
34、徑,對該目錄進(jìn)行創(chuàng)建和刪除操作。創(chuàng)建目錄時,如果目錄文件所在目錄不存在則自動創(chuàng)建相應(yīng)目錄;刪除目錄時,由用戶指定當(dāng)該目錄不為空時是否還刪除該目錄;Shell命令:創(chuàng)建目錄:./hdfs dfs -mkdir -p dir1/dir2刪除目錄(如果目錄非空則會提示not empty,不執(zhí)行刪除):./hdfs dfs -rmdir dir1/dir2強(qiáng)制刪除目錄:./hdfs dfs -rm -R dir1/dir2Java代碼:import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.*;import jav
35、a.io.*;public class HDFSApi /* * 判斷路徑是否存在 */ public static boolean test(Configuration conf, String path) throws IOException FileSystem fs = FileSystem.get(conf); return fs.exists(new Path(path); /* * 判斷目錄是否為空 * true: 空,false: 非空 */ public static boolean isDirEmpty(Configuration conf, String remoteDi
36、r) throws IOException FileSystem fs = FileSystem.get(conf); Path dirPath = new Path(remoteDir); RemoteIterator remoteIterator = fs.listFiles(dirPath, true); return !remoteIterator.hasNext(); /* * 創(chuàng)建目錄 */ public static boolean mkdir(Configuration conf, String remoteDir) throws IOException FileSystem
37、fs = FileSystem.get(conf); Path dirPath = new Path(remoteDir); boolean result = fs.mkdirs(dirPath); fs.close(); return result; /* * 刪除目錄 */ public static boolean rmDir(Configuration conf, String remoteDir) throws IOException FileSystem fs = FileSystem.get(conf); Path dirPath = new Path(remoteDir); /
38、* 第二個參數(shù)表示是否遞歸刪除所有文件 */ boolean result = fs.delete(dirPath, true); fs.close(); return result; /* * 主函數(shù) */public static void main(String args) Configuration conf = new Configuration(); conf.set(,hdfs:/localhost:9000);String remoteDir = /user/hadoop/input; / HDFS目錄Boolean forceDelete = f
39、alse; / 是否強(qiáng)制刪除try /* 判斷目錄是否存在,不存在則創(chuàng)建,存在則刪除 */if ( !HDFSApi.test(conf, remoteDir) ) HDFSApi.mkdir(conf, remoteDir); / 創(chuàng)建目錄System.out.println(創(chuàng)建目錄: + remoteDir); else if ( HDFSApi.isDirEmpty(conf, remoteDir) | forceDelete ) / 目錄為空或強(qiáng)制刪除HDFSApi.rmDir(conf, remoteDir);System.out.println(刪除目錄: + remoteDir
40、); else / 目錄不為空System.out.println(目錄不為空,不刪除: + remoteDir); catch (Exception e) e.printStackTrace();(8) 向HDFS中指定的文件追加內(nèi)容,由用戶指定內(nèi)容追加到原有文件的開頭或結(jié)尾;Shell命令:追加到文件末尾:./hdfs dfs -appendToFile local.txt text.txt追加到文件開頭:(由于沒有直接的命令可以操作,方法之一是先移動到本地進(jìn)行操作,再進(jìn)行上傳覆蓋):./hdfs dfs -get text.txtcat text.txt local.txt./hdfs
41、dfs -copyFromLocal -f text.txt text.txtJava代碼:import org.apache.hadoop.conf.Configuration;import org.apache.hadoop.fs.*;import java.io.*;public class HDFSApi /* * 判斷路徑是否存在 */ public static boolean test(Configuration conf, String path) throws IOException FileSystem fs = FileSystem.get(conf); return f
42、s.exists(new Path(path); /* * 追加文本內(nèi)容 */ public static void appendContentToFile(Configuration conf, String content, String remoteFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new Path(remoteFilePath); /* 創(chuàng)建一個文件輸出流,輸出的內(nèi)容將追加到文件末尾 */ FSDataOutputStream out = fs.app
43、end(remotePath); out.write(content.getBytes(); out.close(); fs.close(); /* * 追加文件內(nèi)容 */ public static void appendToFile(Configuration conf, String localFilePath, String remoteFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new Path(remoteFilePath); /* 創(chuàng)建一個文件讀入流 */
44、 FileInputStream in = new FileInputStream(localFilePath); /* 創(chuàng)建一個文件輸出流,輸出的內(nèi)容將追加到文件末尾 */ FSDataOutputStream out = fs.append(remotePath); /* 讀寫文件內(nèi)容 */ byte data = new byte1024; int read = -1; while ( (read = in.read(data) 0 ) out.write(data, 0, read); out.close(); in.close(); fs.close(); /* * 移動文件到本地
45、* 移動后,刪除源文件 */ public static void moveToLocalFile(Configuration conf, String remoteFilePath, String localFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new Path(remoteFilePath); Path localPath = new Path(localFilePath); fs.moveToLocalFile(remotePath, localPath);
46、 /* * 創(chuàng)建文件 */ public static void touchz(Configuration conf, String remoteFilePath) throws IOException FileSystem fs = FileSystem.get(conf); Path remotePath = new Path(remoteFilePath); FSDataOutputStream outputStream = fs.create(remotePath); outputStream.close(); fs.close(); /* * 主函數(shù) */public static
47、void main(String args) Configuration conf = new Configuration(); conf.set(,hdfs:/localhost:9000);String remoteFilePath = /user/hadoop/text.txt; / HDFS文件String content = 新追加的內(nèi)容n;String choice = after; /追加到文件末尾/String choice = before; / 追加到文件開頭try /* 判斷文件是否存在 */if ( !HDFSApi.test(conf, remoteFilePath) ) System.out.println(文件不存在: + remoteFilePath); else if ( choice.equals(after) ) / 追加在文件末尾HDFSApi.appendContentToFile(conf, content, remoteFilePath);System.out.println(已追加內(nèi)容到文件
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 貴州財(cái)經(jīng)大學(xué)《創(chuàng)業(yè)團(tuán)隊(duì)管理》2023-2024學(xué)年第一學(xué)期期末試卷
- 2025年甘肅省建筑安全員C證考試題庫
- 2025年河南省安全員《C證》考試題庫
- 貴陽學(xué)院《山水寫生》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣州應(yīng)用科技學(xué)院《游戲制作與開發(fā)》2023-2024學(xué)年第一學(xué)期期末試卷
- 廣州鐵路職業(yè)技術(shù)學(xué)院《建筑力學(xué)(上)》2023-2024學(xué)年第一學(xué)期期末試卷
- 2025四川省安全員-C證考試(專職安全員)題庫附答案
- 2025云南省建筑安全員《C證》考試題庫及答案
- 6.4.2向量在物理中的應(yīng)用舉例【超級課堂】2022-2023學(xué)年高一數(shù)學(xué)教材配套教學(xué)精-品課件+分層練習(xí)人教A版2019必修第二冊
- 材料力學(xué)課件-動載荷
- 2024-2030年中國紋身針行業(yè)市場發(fā)展趨勢與前景展望戰(zhàn)略分析報(bào)告
- 部編版道德與法治九年級上冊每課教學(xué)反思
- 2024云南保山電力股份限公司招聘(100人)(高頻重點(diǎn)提升專題訓(xùn)練)共500題附帶答案詳解
- 人教版(2024)七年級上冊英語 Unit 1 You and Me 語法知識點(diǎn)復(fù)習(xí)提綱與學(xué)情評估測試卷匯編(含答案)
- 六年級期末家長會課件下載
- DZ∕T 0388-2021 礦區(qū)地下水監(jiān)測規(guī)范
- 計(jì)算機(jī)網(wǎng)絡(luò)信息安全理論與實(shí)踐教程
- 煤炭托盤合作協(xié)議書
- 2024年重慶市學(xué)業(yè)水平模擬考試地理試卷(二)
- 西師大版2023-2024學(xué)年五年級數(shù)學(xué)上冊期末測試卷含答案
- 大班春季班級工作計(jì)劃下學(xué)期
評論
0/150
提交評論