ftp鏈接、上傳、下載、斷開


 開發環境:Jdk 1.8

  引入第三方庫:commons-net-2.2.jar(針對第一種方法)

 

一、基於第三方庫FtpClient的FTP服務器數據傳輸

  由於是基於第三方庫,所以這里基本上沒有太多要說明的東西。就是導入第三方庫再調用即可,調用過程從下面的代碼可以參見。為了便於文章的完整性,這也是給出其程序結構圖吧。

圖-1 基於FtpClient的FTP網絡文件傳輸圖

 所需要

commons.net-1.4.1.jar

jar包已保存到百度網盤ftptest中。或者http://pan.baidu.com/s/1hq5p7NI

 
         

/**
* ftp鏈接常量
*
*/
public class Ftp {

 
         

private String ipAddr;//ip地址

private Integer port;//端口號

private String userName;//用戶名

private String pwd;//密碼

private String path;//aaa路徑

 
         

public String getIpAddr() {
return ipAddr;
}

 
         

public void setIpAddr(String ipAddr) {
this.ipAddr = ipAddr;
}

 
         

public Integer getPort() {
return port;
}

 
         

public void setPort(Integer port) {
this.port = port;
}

 
         

public String getUserName() {
return userName;
}

 
         

public void setUserName(String userName) {
this.userName = userName;
}

 
         

public String getPwd() {
return pwd;
}

 
         

public void setPwd(String pwd) {
this.pwd = pwd;
}

 
         

public String getPath() {
return path;
}

 
         

public void setPath(String path) {
this.path = path;
}


}

 

 

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;


import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;
import org.apache.log4j.Logger;

public class FtpUtil {
    
    private static Logger logger=Logger.getLogger(FtpUtil.class);
    
    private static FTPClient ftp;
    
    /**
     * 獲取ftp連接
     * @param f
     * @return
     * @throws Exception
     */
    public static boolean connectFtp(Ftp f) throws Exception{
        ftp=new FTPClient();
        boolean flag=false;
        int reply;
        if (f.getPort()==null) {
            ftp.connect(f.getIpAddr(),21);
        }else{
            ftp.connect(f.getIpAddr(),f.getPort());
        }
        ftp.login(f.getUserName(), f.getPwd());
        ftp.setFileType(FTPClient.BINARY_FILE_TYPE);
        reply = ftp.getReplyCode();      
        if (!FTPReply.isPositiveCompletion(reply)) {      
              ftp.disconnect();      
              return flag;      
        }      
        ftp.changeWorkingDirectory(f.getPath());      
        flag = true;      
        return flag;
    }
    
    /**
     * 關閉ftp連接
     */
    public static void closeFtp(){
        if (ftp!=null && ftp.isConnected()) {
            try {
                ftp.logout();
                ftp.disconnect();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
    
    /**
     * ftp上傳文件
     * @param f
     * @throws Exception
     */
    public static void upload(File f) throws Exception{
        if (f.isDirectory()) {
            ftp.makeDirectory(f.getName());
            ftp.changeWorkingDirectory(f.getName());
            String[] files=f.list();
            for(String fstr : files){
                File file1=new File(f.getPath()+"/"+fstr);
                if (file1.isDirectory()) {
                    upload(file1);
                    ftp.changeToParentDirectory();
                }else{
                    File file2=new File(f.getPath()+"/"+fstr);
                    FileInputStream input=new FileInputStream(file2);
                    ftp.storeFile(file2.getName(),input);
                    input.close();
                }
            }
        }else{
            File file2=new File(f.getPath());
            FileInputStream input=new FileInputStream(file2);
            ftp.storeFile(file2.getName(),input);
            input.close();
        }
    }
    
    /**
     * 下載鏈接配置
     * @param f
     * @param localBaseDir 本地目錄
     * @param remoteBaseDir 遠程目錄
     * @throws Exception
     */
    public static void startDown(Ftp f,String localBaseDir,String remoteBaseDir ) throws Exception{
        if (FtpUtil.connectFtp(f)) {
            
            try { 
                FTPFile[] files = null; 
                boolean changedir = ftp.changeWorkingDirectory(remoteBaseDir); 
                if (changedir) { 
                    ftp.setControlEncoding("GBK"); 
                    files = ftp.listFiles(); 
                    for (int i = 0; i < files.length; i++) { 
                        try{ 
                            downloadFile(files[i], localBaseDir, remoteBaseDir); 
                        }catch(Exception e){ 
                            logger.error(e); 
                            logger.error("<"+files[i].getName()+">下載失敗"); 
                        } 
                    } 
                } 
            } catch (Exception e) { 
                logger.error(e); 
                logger.error("下載過程中出現異常"); 
            } 
        }else{
            logger.error("鏈接失敗!");
        }
        
    }
    
    
    /** 
     * 
     * 下載FTP文件 
     * 當你需要下載FTP文件的時候,調用此方法 
     * 根據<b>獲取的文件名,本地地址,遠程地址</b>進行下載 
     * 
     * @param ftpFile 
     * @param relativeLocalPath 
     * @param relativeRemotePath 
     */ 
    private  static void downloadFile(FTPFile ftpFile, String relativeLocalPath,String relativeRemotePath) { 
        if (ftpFile.isFile()) {
            if (ftpFile.getName().indexOf("?") == -1) { 
                OutputStream outputStream = null; 
                try { 
                    File locaFile= new File(relativeLocalPath+ ftpFile.getName()); 
                    //判斷文件是否存在,存在則返回 
                    if(locaFile.exists()){ 
                        return; 
                    }else{ 
                        outputStream = new FileOutputStream(relativeLocalPath+ ftpFile.getName()); 
                        ftp.retrieveFile(ftpFile.getName(), outputStream); 
                        outputStream.flush(); 
                        outputStream.close(); 
                    } 
                } catch (Exception e) { 
                    logger.error(e);
                } finally { 
                    try { 
                        if (outputStream != null){ 
                            outputStream.close(); 
                        }
                    } catch (IOException e) { 
                       logger.error("輸出文件流異常"); 
                    } 
                } 
            } 
        } else { 
            String newlocalRelatePath = relativeLocalPath + ftpFile.getName(); 
            String newRemote = new String(relativeRemotePath+ ftpFile.getName().toString()); 
            File fl = new File(newlocalRelatePath); 
            if (!fl.exists()) { 
                fl.mkdirs(); 
            } 
            try { 
                newlocalRelatePath = newlocalRelatePath + '/'; 
                newRemote = newRemote + "/"; 
                String currentWorkDir = ftpFile.getName().toString(); 
                boolean changedir = ftp.changeWorkingDirectory(currentWorkDir); 
                if (changedir) { 
                    FTPFile[] files = null; 
                    files = ftp.listFiles(); 
                    for (int i = 0; i < files.length; i++) { 
                        downloadFile(files[i], newlocalRelatePath, newRemote); 
                    } 
                } 
                if (changedir){
                    ftp.changeToParentDirectory(); 
                } 
            } catch (Exception e) { 
                logger.error(e);
            } 
        } 
    } 

    
    public static void main(String[] args) throws Exception{  
            Ftp f=new Ftp();
            f.setIpAddr("1111");
            f.setUserName("root");
            f.setPwd("111111");
            FtpUtil.connectFtp(f);
            File file = new File("F:/test/com/test/Testng.java");  
            FtpUtil.upload(file);//把文件上傳在ftp上
            FtpUtil.startDown(f, "e:/",  "/xxtest");//下載ftp文件測試
            System.out.println("ok");
          
       }  
    
}

 

1.FTP的連接及登錄

 

 
  1. public static FtpClient connectFTP(String url, int port, String username, String password) {  
  2.         //創建ftp  
  3.         FtpClient ftp = null;  
  4.         try {  
  5.             //創建地址  
  6.             SocketAddress addr = new InetSocketAddress(url, port);  
  7.             //連接  
  8.             ftp = FtpClient.create();  
  9.             ftp.connect(addr);  
  10.             //登陸  
  11.             ftp.login(username, password.toCharArray());  
  12.             ftp.setBinaryType();  
  13.         } catch (FtpProtocolException e) {  
  14.             e.printStackTrace();  
  15.         } catch (IOException e) {  
  16.             e.printStackTrace();  
  17.         }  
  18.         return ftp;  
  19.     }  

2.上傳文件到FTP服務器

 

 
  1. public static void upload(String localFile, String ftpFile, FtpClient ftp) {  
  2.         OutputStream os = null;  
  3.         FileInputStream fis = null;  
  4.         try {  
  5.             // 將ftp文件加入輸出流中。輸出到ftp上  
  6.             os = ftp.putFileStream(ftpFile);  
  7.             File file = new File(localFile);  
  8.   
  9.             // 創建一個緩沖區  
  10.             fis = new FileInputStream(file);  
  11.             byte[] bytes = new byte[1024];  
  12.             int c;  
  13.             while((c = fis.read(bytes)) != -1){  
  14.                 os.write(bytes, 0, c);  
  15.             }  
  16.             System.out.println("upload success!!");  
  17.         } catch (FtpProtocolException e) {  
  18.             e.printStackTrace();  
  19.         } catch (IOException e) {  
  20.             e.printStackTrace();  
  21.         } finally {  
  22.             try {  
  23.                 if(os!=null) {  
  24.                     os.close();  
  25.                 }  
  26.                 if(fis!=null) {  
  27.                     fis.close();  
  28.                 }  
  29.             } catch (IOException e) {  
  30.                 e.printStackTrace();  
  31.             }  
  32.         }  
  33.     }  

 

3.從FTP服務器下載文件

 

 
  1. public static void download(String localFile, String ftpFile, FtpClient ftp) {  
  2.         InputStream is = null;  
  3.         FileOutputStream fos = null;  
  4.         try {  
  5.             // 獲取ftp上的文件  
  6.             is = ftp.getFileStream(ftpFile);  
  7.             File file = new File(localFile);  
  8.             byte[] bytes = new byte[1024];  
  9.             int i;  
  10.             fos = new FileOutputStream(file);  
  11.             while((i = is.read(bytes)) != -1){  
  12.                 fos.write(bytes, 0, i);  
  13.             }  
  14.             System.out.println("download success!!");  
  15.   
  16.         } catch (FtpProtocolException e) {  
  17.             e.printStackTrace();  
  18.         } catch (IOException e) {  
  19.             e.printStackTrace();  
  20.         } finally {  
  21.             try {  
  22.                 if(fos!=null) {  
  23.                     fos.close();  
  24.                 }  
  25.                 if(is!=null){  
  26.                     is.close();  
  27.                 }  
  28.             } catch (IOException e) {  
  29.                 e.printStackTrace();  
  30.             }  
  31.         }  
  32.     }  

  

二、基於Socket的FTP服務器數據傳輸

  其實上面的基於第三方包FtpClient的方法中,原理層也是基於Socket來進行通信的。所以,我們當然也可以使用Socket直接來寫這個FtpClient的代碼。下面給出基於Socket通信的結構構架圖。這里有一點需要大家注意一下,我們的FTP協議中有兩個端口(20和21)。通常情況下,我們的21號端口就是平時大家口口相傳的是FTP服務器的端口號,不過其實它只是FTP服務器中的命令端口號。它是負責傳送命令給FTP,一些操作如“登錄”、“改變目錄”、“刪除文件”,依靠這個連接發送命令就可完成。而對於20號端口號(也有可能是其它的一些端口號),對於有數據傳輸的操作,主要是顯示目錄列表,上傳、下載文件,我們需要依靠另一個Socket來完成。

  所以在下面的結構圖中,我們可以看到我們有重新獲得端口號的過程,正是這個原因。

圖-2 基於Socket的FTP網絡文件傳輸圖

 

1.FTP連接

 

 
  1. public void connectFtp() {  
  2.         try {  
  3.             mFtpClient = new Socket(Config.FTP.HOST_IP, Config.FTP.HOST_PORT);  
  4.             mReader = new BufferedReader(new InputStreamReader(mFtpClient.getInputStream()));  
  5.             mWriter = new BufferedWriter(new OutputStreamWriter(mFtpClient.getOutputStream()));  
  6.   
  7.             sendCommand("USER " + Config.FTP.FTP_USERNAME);  
  8.             sendCommand("PASS " + Config.FTP.FTP_PASSWD);  
  9.         } catch (IOException e) {  
  10.             e.printStackTrace();  
  11.         }  
  12.     }  

 

2.向FTP服務器發送命令

 

 

 
  1. private void sendCommand(String command) throws IOException {  
  2.         if (Tools.StringTools.isEmpty(command)) {  
  3.             return;  
  4.         }  
  5.   
  6.         if (mFtpClient == null) {  
  7.             return;  
  8.         }  
  9.   
  10.         mWriter.write(command + "\r\n");  
  11.         mWriter.flush();  
  12.     }  

 

3.向FTP服務器上傳文件

 

 

 
  1. public void uploadFile(String localPath, String ftpPath) throws IOException {  
  2.         // 進入被動模式  
  3.         sendCommand("PASV");  
  4.   
  5.         // 獲得ip和端口  
  6.         String response = readNewMessage();  
  7.         String[] ipPort = getIPPort(response);  
  8.         String ip = ipPort[0];  
  9.         int port = Integer.parseInt(ipPort[1]);  
  10.   
  11.         // 建立數據端口的連接  
  12.         Socket dataSocket = new Socket(ip, port);  
  13.         sendCommand("STOR " + ftpPath);  
  14.   
  15.         // 上傳文件前的准備  
  16.         File localFile = new File(localPath);  
  17.         OutputStream outputStream = dataSocket.getOutputStream();  
  18.         FileInputStream fileInputStream = new FileInputStream(localFile);  
  19.   
  20.         // 上傳文件  
  21.         int offset;  
  22.         byte[] bytes = new byte[1024];  
  23.         while ((offset = fileInputStream.read(bytes)) != -1) {  
  24.             outputStream.write(bytes, 0, offset);  
  25.         }  
  26.         System.out.println("upload success!!");  
  27.   
  28.         // 上傳文件后的善后工作  
  29.         outputStream.close();  
  30.         fileInputStream.close();  
  31.         dataSocket.close();  
  32.     }  

 

4.從FTP服務器下載文件

[java]  view plain  copy
 
 print?
  1. public void downloadFile(String localPath, String ftpPath) throws IOException {  
  2.         // 進入被動模式  
  3.         sendCommand("PASV");  
  4.   
  5.         // 獲得ip和端口  
  6.         String response = readNewMessage();  
  7.         String[] ipPort = getIPPort(response);  
  8.         String ip = ipPort[0];  
  9.         int port = Integer.parseInt(ipPort[1]);  
  10.   
  11.         // 建立數據端口的連接  
  12.         Socket dataSocket = new Socket(ip, port);  
  13.         sendCommand("RETR " + ftpPath);  
  14.   
  15.         // 下載文件前的准備  
  16.         File localFile = new File(localPath);  
  17.         InputStream inputStream = dataSocket.getInputStream();  
  18.         FileOutputStream fileOutputStream = new FileOutputStream(localFile);  
  19.   
  20.         // 下載文件  
  21.         int offset;  
  22.         byte[] bytes = new byte[1024];  
  23.         while ((offset = inputStream.read(bytes)) != -1) {  
  24.             fileOutputStream.write(bytes, 0, offset);  
  25.         }  
  26.         System.out.println("download success!!");  
  27.   
  28.         // 下載文件后的善后工作  
  29.         inputStream.close();  
  30.         fileOutputStream.close();  
  31.         dataSocket.close();  
  32.     }  

 

5.斷開FTP服務器連接

 

[java]  view plain  copy
 
 print?
    1. public void disconnectFtp() {  
    2.         if (mFtpClient == null) {  
    3.             return;  
    4.         }  
    5.   
    6.         if (!mFtpClient.isConnected()) {  
    7.             return;  
    8.         }  
    9.   
    10.         try {  
    11.             mFtpClient.close();  
    12.         } catch (IOException e) {  
    13.             e.printStackTrace();  
    14.         }  
    15.     }  


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM