commons-net-3.3 ftpClient上傳檔案報錯java.net.socketexception: connection timed out
FTPClient ftpClient = new FTPClient();
FileInputStream fileInputStream;
try {
ftpClient.connect(HOST);
ftpClient.login(USER_NAME, PASSWORD);
ftpClient.enterLocalPassiveMode();
fileInputStream = new FileInputStream(reconciliationFile);
Boolean isSuccess = ftpClient.storeFile("/" + PATH + "/" + reconciliationFile.getName(), fileInputStream);
logger.info("上傳取暖對賬檔案結果:{}",isSuccess.toString());
reconciliationFile.deleteOnExit();
return true;
} catch (IOException e) {
logger.info(e.getMessage(), e);
throw new RuntimeException("FTP客戶端出錯!", e);
}
}
如果沒有
ftpClient.enterLocalPassiveMode();
將會丟擲異常java.net.socketexception: connection timed out
或者isSuccess的將為false;
相關文章
- [debug] vagrant報錯mount.nfs: Connection timed outNFS
- WARNING: inbound connection timed out (ORA-3136)錯誤分析
- JMETER java.net.SocketException: Connection reset 報錯解決方案JMeterJavaException
- 報錯(已解決)Command timed out after no timeout
- CM agent 傳送heartbeat給CM server 不斷髮生 connection refused:timed outServer
- 執行systemctl status ssh返回“Failed to get properties: Connection timed out”AI
- oozie.action.hadoop.LauncherException: IO error Connection timed out: no further informationHadoopExceptionErrorORM
- [Clickhouse] Clickhouse 報SQLException : Read timed outSQLException
- Hadoop hdfs上傳檔案報錯解決Hadoop
- Uedior上傳大檔案超時報錯
- java.sql.SQLException:IO 錯誤:Socket read timed out !JavaSQLException
- Putty或MobaXTerm無法連線VMware虛擬機器 報Network error: Connection timed out的解決方案虛擬機Error
- Ueditor 上傳圖片自動新增水印(只能上傳圖片,上傳檔案報錯)
- 關於遠端連線虛擬機器Network error: Connection timed out的問題虛擬機Error
- git上傳檔案時報錯常見的處理辦法Git
- PbootCMS錯誤提示:檔案上傳失敗boot
- pip 下載報"connection to pypi.org time out"
- 上傳專案到gitHub,上傳報錯和刪除gitHub上的專案Github
- 單個檔案上傳和批量檔案上傳
- 檔案上傳
- Java大檔案上傳、分片上傳、多檔案上傳、斷點續傳、上傳檔案minio、分片上傳minio等解決方案Java斷點
- 檔案上傳之三基於flash的檔案上傳
- 03-Java框架FTPClient 使用rename()移動檔案和檔案重新命名Java框架FTPclient
- 前端大檔案上傳/分片上傳前端
- minio上傳檔案
- 檔案上傳漏洞
- JavaScript 檔案上傳JavaScript
- SpringBoot上傳檔案Spring Boot
- Flask——檔案上傳Flask
- Linux上傳檔案Linux
- Git上傳檔案Git
- PHP上傳檔案PHP
- 檔案上傳概述
- ajaxfileupload 檔案上傳
- Laravel 大檔案分塊上傳錯誤記錄Laravel
- .NET Core 如何上傳檔案及處理大檔案上傳
- Linux伺服器上傳檔案傳送檔案Linux伺服器
- OGG Director報錯 Connection FAILEDAI
- 前端傳輸檔案到後端報錯問題前端後端