1. FTP 설명
FTP는 File Transfer Protocol의 영문 약어로 TCP/IP 프로토콜 그룹에 속합니다. 제어 파일을 양방향으로 전송합니다. 동시에 애플리케이션(애플리케이션)이기도 하다. FTP 응용 프로그램은 운영 체제에 따라 다르며 모두 파일 전송에 대해 동일한 프로토콜을 따릅니다. 프로토콜은 두 부분으로 구성됩니다. 하나는 FTP 서버이고 다른 하나는 FTP 클라이언트입니다.
2. 아이디어 다운로드
(1) 파일 형식 설정(바이너리)
(2) ftp 해당 파일 입력 스트림, ftp 클라이언트 개체 및 ftp 파일 입력 스트림 처리
(3) 처리된 파일 목록 ,
(4)를 사용하여 현재 파일 이름
3을 처리하는 데 사용됩니다. FTP 다운로드 예
/** * * JAVA操作 FTP 下载 * 文件下载。 * */ private void ftpDownload() { FTPClient ftpClient = null; InputStream input = null; boolean loginFlag = false; List<String> list = new ArrayList<String>(); try { int defaultPort = CommonsMessage.FTP_DEFAULT_PORT; // 21 int timeout = M400Constant.NUM_SIXTY_THOUSAND * M400Constant.NUM_TWO; // 120000 ftpClient = new FTPClient(); ftpClient.setDefaultPort(defaultPort); ftpClient.setConnectTimeout(timeout); // ftpClient.setSoTimeout(timeout); ftpClient.setDefaultTimeout(timeout); ftpClient.setDataTimeout(timeout); ftpClient.setControlEncoding("UTF-8"); FTPClientConfig conf = new FTPClientConfig(FTPClientConfig.SYST_UNIX); conf.setServerLanguageCode("en"); conf.setDefaultDateFormatStr("MMM dd HH:mm"); ftpClient.configure(conf); ftpClient.connect(SystemConfig.getKey("scpFtpIp")); loginFlag = ftpClient.login(SystemConfig.getKey("scpFtpUserName").trim(), SystemConfig.getKey("scpFtpPassword").trim()); String ftpDir = SystemConfig.getKey("ftpHangupDir").trim(); if (!loginFlag) { DEBUGGER.debug("login scp ftp is :" + loginFlag); } // String ftpDir = SystemConfig.getKey("ftpHangupDir").trim(); if (ftpClient.changeWorkingDirectory(ftpDir)) { FTPFile file[] = ftpClient.listFiles(ftpDir); if (file != null && file.length > 0) { DEBUGGER.debug("hungup file size is: " + file.length); for (int i = 0; i < file.length; i++) { String fileName = file[i].getName(); ftpClient.setBufferSize(CommonsMessage.ONE_K_BUFFER_SIZE); // 设置文件类型(二进制) ftpClient.setFileType(FTP.BINARY_FILE_TYPE); input = ftpClient.retrieveFileStream(fileName); processInput(ftpClient, input, list, fileName); // if (downFlag) { // ftpClient.deleteFile(fileName); // } } } else { try { Thread.sleep(M400Constant.NUM_FIVE_THOUSAND); } catch (InterruptedException e) { /* * if (DEBUGGER.isDebugEnable()) { * DEBUGGER.debug("Failed to queryScpToQuery", e); } */ error("Failed to queryScpToQuery", e); } } } else { DEBUGGER.debug("scp dir is error "); } } catch (Exception e) { /* * DEBUGGER.debug("dowonload file is faild ", e); */ error("dowonload file is faild ", e); } finally { close(input, "close inputStream is faild "); if (ftpClient != null) { try { deleteFile(ftpClient, list); boolean logoutFlag = false; try { logoutFlag = ftpClient.logout(); // DEBUGGER.debug("logout : " + logoutFlag); } catch (Exception e) { /* * DEBUGGER.debug("logout : " + logoutFlag); */ error("logout : " + logoutFlag, e); } ftpClient = null; } catch (Exception e) { /* * if (DEBUGGER.isDebugEnable()) { * DEBUGGER.error("Failed to ftpDownload", e); } */ error("Failed to ftpDownload", e); } // try { // ftpClient.disconnect(); // } catch (IOException e) { // if (DEBUGGER.isDebugEnable()) { // DEBUGGER.debug("Failed to ftpDownload", e); // } // } } } } /** * 处理ftp对应文件输入流。 * * @param ftpClient * ftp客户端对象 * @param input * ftp文件输入流 * @param list * 处理完毕的文件列表,用于执行文件删除使用 * @param fileName * 当前处理的文件名称 */ private void processInput(FTPClient ftpClient, InputStream input, List<String> list, String fileName) { if (input == null) { return; } // boolean downFlag = callingService(input); callingService(input); try { input.close(); ftpClient.completePendingCommand(); list.add(fileName); } catch (Exception e) { /* * DEBUGGER.debug("Failed to ftpDownload", e); */ error("Failed to ftpDownload", e); } } }
위 내용은 Java에서 FTP 다운로드를 사용하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!