Changes between Version 1 and Version 2 of III131019/Lab11


Ignore:
Timestamp:
Oct 19, 2013, 10:50:03 PM (11 years ago)
Author:
jazz
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • III131019/Lab11

    v1 v2  
    55= 實作十一 Lab11 =
    66
     7 * 延續上一個實作,我們也可以參考 !FsShell.java 的 copyToLocal(String[]argv, int pos) 函數,來撰寫從 HDFS 下載到本地端的程式
     8{{{
     9#!java
     10
     11{{{
     12#!java
     13 159   void copyToLocal(String[]argv, int pos) throws IOException {
     14.... 略 ....
     15 183       Path srcpath = new Path(srcstr);
     16 184       FileSystem srcFS = getSrcFileSystem(srcpath, verifyChecksum);
     17.... 略 ....
     18}}}
    719{{{
    820cd ~/hadoop_labs/lab005