java ftp上傳失敗怎麼辦?
最近做一個專案要將檔案上傳到FTP指定目錄,然後發現專案部署在tomcat就可以成功,部署在weblogic就失敗,在網路上找了很多原因一直沒有解決。
boolean isSuccee = ftp.storeFile(fileName, in);
這裡一直回傳false上傳失敗
然後看網路解決方案是新增ftp.enterLocalPassiveMode();仍然沒有解決問題
直接上程式碼:
先連結ftp服務
private static FTPClient ftp; /* * 获得ftp链接 */ public static boolean connectFtp(Ftp ftpInfo) throws Exception { ftp = new FTPClient(); boolean flag = false; int reply; if(ftpInfo.getPort() != null && !"".equals(ftpInfo.getPort())){ ftp.connect(ftpInfo.getIpAddr(),ftpInfo.getPort()); }else{ ftp.connect(ftpInfo.getIpAddr()); } ftp.login(ftpInfo.getUserName(), ftpInfo.getPwd()); ftp.setFileType(FTPClient.BINARY_FILE_TYPE); reply = ftp.getReplyCode(); if (!FTPReply.isPositiveCompletion(reply)) { ftp.disconnect(); return flag; } ftp.changeWorkingDirectory(ftpInfo.getPath()); flag = true; return flag; }
然後是上傳檔案:
/** * 文件上传 * @param file * @throws IOException */ public static void uploadFile(File file) throws IOException { FileInputStream in = null; try { in = new FileInputStream(file); String fileName = file.getName(); /** * ftp.enterLocalPassiveMode(); * 这个方法的意思就是每次数据连接之前,ftp client告诉ftp server开通一个端口来传输数据。 * 为什么要这样做呢,因为ftp server可能每次开启不同的端口来传输数据, * 但是在linux上或者其他服务器上面,由于安全限制,可能某些端口没有开启,所以就出现阻塞。 */ ftp.enterLocalPassiveMode(); ftp.setFileTransferMode(FTP.STREAM_TRANSFER_MODE); boolean isSuccee = ftp.storeFile(fileName, in); int i = 1; String newFileName = null; while (!isSuccee) { //多次上传数据直到成功(最多12次) newFileName = i + fileName; isSuccee = ftp.storeFile(newFileName, in); i++; if(i>11){ break; } } String ftpPath = ServiceConstans.ONEPORT_FTP_PATH;//驳船配载图上传到FTP的路径 if (isSuccee ) { //成功 logger.info("FTP:文件上传成功!"); if( newFileName == null){ ftp.rename(fileName, ftpPath+fileName); // 第一次上传就成功 }else{ ftp.rename(newFileName, ftpPath+fileName); } } else { logger.info("FTP:文件上传失败!!"); throw new BusiException("FTP:文件上传失败!!"); } } catch (FileNotFoundException e) { logger.error("未找到相关文件!", e); } catch (IOException e) { logger.error("上传文件失败!", e); } finally { in.close(); //file.delete();//删除源文件 } }
#解決方案:
由於程式碼一直沒有問題,從伺服器方面偵測;
因為web logic上的jar包版本低於項目中的jar包,沒有強行設定查找本項目jar包的話會優先加載weblogic中的jar包所以由於版本過低導致上傳失敗
所以在weblogic.xml檔案中加入上
相關推薦:《java學習》
以上是java ftp上傳失敗怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!