溫馨提示×

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

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

java實(shí)現(xiàn)ftp文件上傳下載功能

發(fā)布時(shí)間:2020-10-23 07:26:43 來源:腳本之家 閱讀:221 作者:zhao1949 欄目:編程語言

本文實(shí)例為大家分享了ftp實(shí)現(xiàn)文件上傳下載的具體代碼,供大家參考,具體內(nèi)容如下

package getUrlPic;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;

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

public class FtpUploadFile {
 public static void main(String[] args){
// public static boolean uploadFile(String url,int port,String username, String password, String path, String filename, InputStream input) {
// boolean success = false;
 FTPClient ftp = new FTPClient();
 InputStream input = null;
 try {
 int reply;
 ftp.connect("localhost", 21);//連接FTP服務(wù)器
 //如果采用默認(rèn)端口,可以使用ftp.connect(url)的方式直接連接FTP服務(wù)器
 ftp.login("test", "test");//登錄
 reply = ftp.getReplyCode();
 if (!FTPReply.isPositiveCompletion(reply)) {
 ftp.disconnect();
 System.out.println("can not connect");
// return success;
 }else{
 ftp.setFileType(FTPClient.BINARY_FILE_TYPE); 
// ftp.changeWorkingDirectory(path);
 input = new ByteArrayInputStream("中xuxxx".getBytes("utf-8"));
 ftp.storeFile("test.txt", input);
 
 // 創(chuàng)建目錄
 ftp.makeDirectory("/test/bb");
 
 //列出目錄
 FTPFile[] dirs = ftp.listDirectories("/test");
 for(FTPFile f : dirs ){
 System.out.println(f.getName());
 }
 }
// ftp.changeWorkingDirectory(path);
// ftp.storeFile(filename, input); 
 
// input.close();
// ftp.logout();
// success = true;
 } catch (IOException e) {
 e.printStackTrace();
 } finally {
 if(input != null){
 try{
 input.close();
 }catch(IOException e){
 e.printStackTrace();
 }
 }
 if (ftp.isConnected()) {
 try {
 ftp.disconnect();
 } catch (IOException ioe) {
 }
 }
 }
// return success;
 }
// }
}

參考:

JAVA中使用FTPClient實(shí)現(xiàn)文件上傳下載實(shí)例代碼

Java使用FTPClient類讀寫FTP

java實(shí)現(xiàn)ftp上傳 如何創(chuàng)建文件夾

java判斷ftp目錄是否存在的方法

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

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

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

AI