您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關java檢驗ftp服務器中文件是否存在的方法,相信大部分人都還不知道這個技巧,因此給大家總結了以下內容,希望大家閱讀完后可以有所收獲。
項目工作中,需要檢驗ftp服務器中指定文件是否存在,在網上查閱了相關資料,可以通過ftpClient類進行實現。
具體實現代碼:
import org.apache.commons.net.ftp.FTP; import org.apache.commons.net.ftp.FTPClient; import org.apache.commons.net.ftp.FTPReply; /** * 檢驗指定路徑的文件是否存在ftp服務器中 * @param filePath--指定絕對路徑的文件 * @param user--ftp服務器登陸用戶名 * @param passward--ftp服務器登陸密碼 * @param ip--ftp的IP地址 * @param port--ftp的端口號 * @return */ public static boolean isFTPFileExist(String filePath,String user,String passward,String ip,int port){ FTPClient ftp = new FTPClient(); try { // 連接ftp服務器 ftp.connect(ip, port); // 登陸 ftp.login(user, passward); // 檢驗登陸操作的返回碼是否正確 if(!FTPReply.isPositiveCompletion(ftp.getReplyCode())){ ftp.disconnect(); return false; } ftp.enterLocalActiveMode(); // 設置文件類型為二進制,與ASCII有區別 ftp.setFileType(FTP.BINARY_FILE_TYPE); // 設置編碼格式 ftp.setControlEncoding("GBK"); // 提取絕對地址的目錄以及文件名 filePath = filePath.replace("ftp://"+ip+":"+port+"/", ""); String dir = filePath.substring(0, filePath.lastIndexOf("/")); String file = filePath.substring(filePath.lastIndexOf("/")+1); // 進入文件所在目錄,注意編碼格式,以能夠正確識別中文目錄 ftp.changeWorkingDirectory(new String(dir.getBytes("GBK"),FTP.DEFAULT_CONTROL_ENCODING)); // 檢驗文件是否存在 InputStream is = ftp.retrieveFileStream(new String(file.getBytes("GBK"),FTP.DEFAULT_CONTROL_ENCODING)); if(is == null || ftp.getReplyCode() == FTPReply.FILE_UNAVAILABLE){ return false; } if(is != null){ is.close(); ftp.completePendingCommand(); } return true; } catch (Exception e) { e.printStackTrace(); }finally{ if(ftp != null){ try { ftp.disconnect(); } catch (IOException e) { e.printStackTrace(); } } } return false; }
以上就是java檢驗ftp服務器中文件是否存在方法的詳細內容了,看完之后是否有所收獲呢?如果想了解更多相關內容,歡迎關注億速云行業資訊!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。