最近做一個(gè)項(xiàng)目需要將文件上傳至FTP指定目錄,然后發(fā)現(xiàn)項(xiàng)目部署在tomcat就可以成功,部署在weblogic就失敗,在網(wǎng)上找了很多原因一直沒有解決。
創(chuàng)新互聯(lián)主營松山網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都app軟件開發(fā),松山h5小程序定制開發(fā)搭建,松山網(wǎng)站營銷推廣歡迎松山等地區(qū)企業(yè)咨詢
boolean isSuccee = ftp.storeFile(fileName, in);
這里一直返回false上傳失敗
然后看網(wǎng)上解決方案是添加ftp.enterLocalPassiveMode();仍然沒有解決問題
直接上代碼:
先鏈接ftp服務(wù)
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(); * 這個(gè)方法的意思就是每次數(shù)據(jù)連接之前,ftp client告訴ftp server開通一個(gè)端口來傳輸數(shù)據(jù)。 * 為什么要這樣做呢,因?yàn)閒tp server可能每次開啟不同的端口來傳輸數(shù)據(jù), * 但是在linux上或者其他服務(wù)器上面,由于安全限制,可能某些端口沒有開啟,所以就出現(xiàn)阻塞。 */ ftp.enterLocalPassiveMode(); ftp.setFileTransferMode(FTP.STREAM_TRANSFER_MODE); boolean isSuccee = ftp.storeFile(fileName, in); int i = 1; String newFileName = null; while (!isSuccee) { //多次上傳數(shù)據(jù)直到成功(最多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("未找到相關(guān)文件!", e); } catch (IOException e) { logger.error("上傳文件失?。?, e); } finally { in.close(); //file.delete();//刪除源文件 } }
解決方案:
由于代碼一直沒有問題,從服務(wù)器方面檢測;
因?yàn)閣eb logic上的jar包版本低于項(xiàng)目中的jar包,沒有強(qiáng)行設(shè)置查找本項(xiàng)目jar包的話會優(yōu)先加載weblogic中的jar包所以由于版本過低導(dǎo)致上傳失敗
所以在weblogic.xml文件中添加上
以上就是java ftp上傳失敗怎么辦的詳細(xì)內(nèi)容,更多請關(guān)注創(chuàng)新互聯(lián)其它相關(guān)文章!