天天看點

解決FTPClient上傳檔案為空,顯示0位元組解決FTPClient上傳檔案為空,顯示0位元組

解決FTPClient上傳檔案為空,顯示0位元組

JAVA使用FTPClient上傳檔案時總是為空,而使用FileZilla用戶端時卻不會。

後來查了下資料,FTP伺服器有被動模式和主動模式。(具體查另外資料)

在JAVA中将FTPClient設定為被動模式即可解決問題。

解決FTPClient上傳檔案為空,顯示0位元組解決FTPClient上傳檔案為空,顯示0位元組
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;

import java.io.File;
import java.io.FileInputStream;

/**
 * Created by Administrator on 2018/4/13.
 */
public class FtpUtil {

    public void testFTPClient() throws Exception {
        try {
            //建立一個FTPClient對象
            FTPClient ftpClient = new FTPClient();
            //建立ftp連結
            ftpClient.connect("***.***.***.***", 21);
            //登入ftp,使用用戶名和密碼
            ftpClient.login("****", "****");
            //讀取本地檔案
            FileInputStream inputStream = new FileInputStream(new File("filePath"));
            //設定為被動模式(如上傳檔案夾成功,不能上傳檔案,注釋這行,否則報錯refused:connect  )
            ftpClient.enterLocalPassiveMode();
            //設定上傳路徑
            ftpClient.changeWorkingDirectory("FTP伺服器檔案目錄");
            //修改上傳檔案格式
            ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
            System.out.println("1");
            //上傳檔案
            ftpClient.storeFile("hello1.jpg", inputStream);
            System.out.println("2");
            //關閉連結
            ftpClient.logout();
        } catch (Exception e) {
            e.printStackTrace();
            throw e;
        }
    }
}           

補充:

調用FTPClient.enterLocalPassiveMode();這個方法的意思就是每次資料連接配接之前,ftp client告訴ftp server開通一個端口來傳輸資料。為什麼要這樣做呢,因為ftp server可能每次開啟不同的端口來傳輸資料,但是在linux上,由于安全限制,可能某些端口沒有開啟,是以就出現阻塞。

到此問題圓滿解決!

EOF