hdfs.exists(newPath(uri))){System.out.println("Error;文件不存在");return;}InputStreamin=null;try{in=hdfs.open(newPath(uri));// 复制到标准输出流IOUtils.copyBytes(in,System.out,4096,false);}catch(Exceptione){e.printStackTrace();}finally{IOUtils.closeStream(in);}}/**...