441442443444445446447448449450451
File dst = new File("E:/hadoop/temp" + tmpFile);// 建立临时的文件 /* * 从hdfs文件系统下载文件到tomcat服务器临时文件dst */ downLoadAction down = new downLoadAction(); down.copyFileFromFs(dfsfile.getFileUrl(), dst, false); dst.deleteOnExit(); return dst; }