溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

java實(shí)現(xiàn)上傳和下載工具類

發(fā)布時(shí)間:2020-10-14 21:05:01 來源:腳本之家 閱讀:137 作者:不帥你打我 欄目:編程語言

本文實(shí)例為大家分享了文件上傳到ftp服務(wù)工具類,供大家參考,具體內(nèi)容如下

直接引用此java工具類就好

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

import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;

/**
 * ftp上傳下載工具類
 * <p>Title: FtpUtil</p>
 * <p>Description: </p>
 * <p>Company: www.itcast.com</p> 
 * @author  入云龍
 * @date  2015年7月29日下午8:11:51
 * @version 1.0
 */
public class FtpUtil {

  /** 
   * Description: 向FTP服務(wù)器上傳文件 
   * @param host FTP服務(wù)器hostname 
   * @param port FTP服務(wù)器端口 
   * @param username FTP登錄賬號 
   * @param password FTP登錄密碼 
   * @param basePath FTP服務(wù)器基礎(chǔ)目錄
   * @param filePath FTP服務(wù)器文件存放路徑。例如分日期存放:/2015/01/01。文件的路徑為basePath+filePath
   * @param filename 上傳到FTP服務(wù)器上的文件名 
   * @param input 輸入流 
   * @return 成功返回true,否則返回false 
   */ 
  public static boolean uploadFile(String host, int port, String username, String password, String basePath,
      String filePath, String filename, InputStream input) {
    boolean result = false;
    FTPClient ftp = new FTPClient();
    try {
      int reply;
      ftp.connect(host, port);// 連接FTP服務(wù)器
      // 如果采用默認(rèn)端口,可以使用ftp.connect(host)的方式直接連接FTP服務(wù)器
      ftp.login(username, password);// 登錄
      reply = ftp.getReplyCode();
      if (!FTPReply.isPositiveCompletion(reply)) {
        ftp.disconnect();
        return result;
      }
      //切換到上傳目錄
      if (!ftp.changeWorkingDirectory(basePath+filePath)) {
        //如果目錄不存在創(chuàng)建目錄
        String[] dirs = filePath.split("/");
        String tempPath = basePath;
        for (String dir : dirs) {
          if (null == dir || "".equals(dir)) continue;
          tempPath += "/" + dir;
          if (!ftp.changeWorkingDirectory(tempPath)) {
            if (!ftp.makeDirectory(tempPath)) {
              return result;
            } else {
              ftp.changeWorkingDirectory(tempPath);
            }
          }
        }
      }
      //設(shè)置上傳文件的類型為二進(jìn)制類型
      ftp.setFileType(FTP.BINARY_FILE_TYPE);
      //上傳文件
      if (!ftp.storeFile(filename, input)) {
        return result;
      }
      input.close();
      ftp.logout();
      result = true;
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      if (ftp.isConnected()) {
        try {
          ftp.disconnect();
        } catch (IOException ioe) {
        }
      }
    }
    return result;
  }
  
  /** 
   * Description: 從FTP服務(wù)器下載文件 
   * @param host FTP服務(wù)器hostname 
   * @param port FTP服務(wù)器端口 
   * @param username FTP登錄賬號 
   * @param password FTP登錄密碼 
   * @param remotePath FTP服務(wù)器上的相對路徑 
   * @param fileName 要下載的文件名 
   * @param localPath 下載后保存到本地的路徑 
   * @return 
   */ 
  public static boolean downloadFile(String host, int port, String username, String password, String remotePath,
      String fileName, String localPath) {
    boolean result = false;
    FTPClient ftp = new FTPClient();
    try {
      int reply;
      ftp.connect(host, port);
      // 如果采用默認(rèn)端口,可以使用ftp.connect(host)的方式直接連接FTP服務(wù)器
      ftp.login(username, password);// 登錄
      reply = ftp.getReplyCode();
      if (!FTPReply.isPositiveCompletion(reply)) {
        ftp.disconnect();
        return result;
      }
      ftp.changeWorkingDirectory(remotePath);// 轉(zhuǎn)移到FTP服務(wù)器目錄
      FTPFile[] fs = ftp.listFiles();
      for (FTPFile ff : fs) {
        if (ff.getName().equals(fileName)) {
          File localFile = new File(localPath + "/" + ff.getName());

          OutputStream is = new FileOutputStream(localFile);
          ftp.retrieveFile(ff.getName(), is);
          is.close();
        }
      }

      ftp.logout();
      result = true;
    } catch (IOException e) {
      e.printStackTrace();
    } finally {
      if (ftp.isConnected()) {
        try {
          ftp.disconnect();
        } catch (IOException ioe) {
        }
      }
    }
    return result;
  }
  
  public static void main(String[] args) {
    try { 
      FileInputStream in=new FileInputStream(new File("D:\\temp\\image\\gaigeming.jpg")); 
      boolean flag = uploadFile("192.168.25.133", 21, "ftpuser", "ftpuser", "/home/ftpuser/www/images","/2015/01/21", "gaigeming.jpg", in); 
      System.out.println(flag); 
    } catch (FileNotFoundException e) { 
      e.printStackTrace(); 
    } 
  }
}

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI