91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

java使用Apache工具集實現ftp文件傳輸代碼詳解

發布時間:2020-10-16 05:17:05 來源:腳本之家 閱讀:442 作者:zlEven 欄目:編程語言

本文主要介紹如何使用Apache工具集commons-net提供的ftp工具實現向ftp服務器上傳和下載文件。

一、準備

需要引用commons-net-3.5.jar包。

使用maven導入:

<dependency>
  <groupId>commons-net</groupId>
  <artifactId>commons-net</artifactId>
  <version>3.5</version>
</dependency>

手動下載:

https://www.jb51.net/softs/550085.html

二、連接FTP Server

/**
   * 連接FTP Server
   * @throws IOException
   */
public static final String ANONYMOUS_USER="anonymous";
private FTPClient connect(){
	FTPClient client = new FTPClient();
	try{
		//連接FTP Server
		client.connect(this.host, this.port);
		//登陸
		if(this.user==null||"".equals(this.user)){
			//使用匿名登陸
			client.login(ANONYMOUS_USER, ANONYMOUS_USER);
		} else{
			client.login(this.user, this.password);
		}
		//設置文件格式
		client.setFileType(FTPClient.BINARY_FILE_TYPE);
		//獲取FTP Server 應答
		int reply = client.getReplyCode();
		if(!FTPReply.isPositiveCompletion(reply)){
			client.disconnect();
			return null;
		}
		//切換工作目錄
		changeWorkingDirectory(client);
		System.out.println("===連接到FTP:"+host+":"+port);
	}
	catch(IOException e){
		return null;
	}
	return client;
}
/**
   * 切換工作目錄,遠程目錄不存在時,創建目錄
   * @param client
   * @throws IOException
   */
private void changeWorkingDirectory(FTPClient client) throws IOException{
	if(this.ftpPath!=null&&!"".equals(this.ftpPath)){
		Boolean ok = client.changeWorkingDirectory(this.ftpPath);
		if(!ok){
			//ftpPath 不存在,手動創建目錄
			StringTokenizer token = new StringTokenizer(this.ftpPath,"\\//");
			while(token.hasMoreTokens()){
				String path = token.nextToken();
				client.makeDirectory(path);
				client.changeWorkingDirectory(path);
			}
		}
	}
}
/**
   * 斷開FTP連接
   * @param ftpClient
   * @throws IOException
   */
public void close(FTPClient ftpClient) throws IOException{
	if(ftpClient!=null && ftpClient.isConnected()){
		ftpClient.logout();
		ftpClient.disconnect();
	}
	System.out.println("!!!斷開FTP連接:"+host+":"+port);
}

host:ftp服務器ip地址
port:ftp服務器端口
user:登陸用戶
password:登陸密碼
登陸用戶為空時,使用匿名用戶登陸。
ftpPath:ftp路徑,ftp路徑不存在時自動創建,如果是多層目錄結構,需要迭代創建目錄。

三、上傳文件

/**
   * 上傳文件
   * @param targetName 上傳到ftp文件名
   * @param localFile 本地文件路徑
   * @return
   */
public Boolean upload(String targetName,String localFile){
	//連接ftp server
	FTPClient ftpClient = connect();
	if(ftpClient==null){
		System.out.println("連接FTP服務器["+host+":"+port+"]失敗!");
		return false;
	}
	File file = new File(localFile);
	//設置上傳后文件名
	if(targetName==null||"".equals(targetName))
	      targetName = file.getName();
	FileInputStream fis = null;
	try{
		long now = System.currentTimeMillis();
		//開始上傳文件
		fis = new FileInputStream(file);
		System.out.println(">>>開始上傳文件:"+file.getName());
		Boolean ok = ftpClient.storeFile(targetName, fis);
		if(ok){
			//上傳成功
			long times = System.currentTimeMillis() - now;
			System.out.println(String.format(">>>上傳成功:大小:%s,上傳時間:%d秒", formatSize(file.length()),times/1000));
		} else//上傳失敗
		System.out.println(String.format(">>>上傳失敗:大小:%s", formatSize(file.length())));
	}
	catch(IOException e){
		System.err.println(String.format(">>>上傳失敗:大小:%s", formatSize(file.length())));
		e.printStackTrace();
		return false;
	}
	finally{
		try{
			if(fis!=null)
			          fis.close();
			close(ftpClient);
		}
		catch(Exception e){
		}
	}
	return true;
}

四、下載文件

/**
   * 下載文件
   * @param localPath 本地存放路徑
   * @return
   */
public int download(String localPath){
	// 連接ftp server
	FTPClient ftpClient = connect();
	if(ftpClient==null){
		System.out.println("連接FTP服務器["+host+":"+port+"]失敗!");
		return 0;
	}
	File dir = new File(localPath);
	if(!dir.exists())
	      dir.mkdirs();
	FTPFile[] ftpFiles = null;
	try{
		ftpFiles = ftpClient.listFiles();
		if(ftpFiles==null||ftpFiles.length==0)
		        return 0;
	}
	catch(IOException e){
		return 0;
	}
	int c = 0;
	for (int i=0;i<ftpFiles.length;i++){
		FileOutputStream fos = null;
		try{
			String name = ftpFiles[i].getName();
			fos = new FileOutputStream(new File(dir.getAbsolutePath()+File.separator+name));
			System.out.println("<<<開始下載文件:"+name);
			long now = System.currentTimeMillis();
			Boolean ok = ftpClient.retrieveFile(new String(name.getBytes("UTF-8"),"ISO-8859-1"), fos);
			if(ok){
				//下載成功
				long times = System.currentTimeMillis() - now;
				System.out.println(String.format("<<<下載成功:大小:%s,上傳時間:%d秒", formatSize(ftpFiles[i].getSize()),times/1000));
				c++;
			} else{
				System.out.println("<<<下載失敗");
			}
		}
		catch(IOException e){
			System.err.println("<<<下載失敗");
			e.printStackTrace();
		}
		finally{
			try{
				if(fos!=null)
				            fos.close();
				close(ftpClient);
			}
			catch(Exception e){
			}
		}
	}
	return c;
}

格式化文件大小

private static final DecimalFormat DF = new DecimalFormat("#.##");
  /**
   * 格式化文件大小(B,KB,MB,GB)
   * @param size
   * @return
   */
  private String formatSize(long size){
    if(size<1024){
      return size + " B";
    }else if(size<1024*1024){
      return size/1024 + " KB";
    }else if(size<1024*1024*1024){
      return (size/(1024*1024)) + " MB";
    }else{
      double gb = size/(1024*1024*1024);
      return DF.format(gb)+" GB";
    }
  }

五、測試

public static void main(String args[]){
    FTPTest ftp = new FTPTest("192.168.1.10",21,null,null,"/temp/2016/12");
    ftp.upload("newFile.rar", "D:/ftp/TeamViewerPortable.rar");
    System.out.println("");
    ftp.download("D:/ftp/");
  }

結果

===連接到FTP:192.168.1.10:21
>>>開始上傳文件:TeamViewerPortable.rar
>>>上傳成功:大小:5 MB,上傳時間:3秒
!!!斷開FTP連接:192.168.1.10:21

===連接到FTP:192.168.1.10:21
<<<開始下載文件:newFile.rar
<<<下載成功:大小:5 MB,上傳時間:4秒
!!!斷開FTP連接:192.168.1.10:21

總結

以上就是本文關于java使用Apache工具集實現ftp文件傳輸代碼詳解的全部內容,希望對大家有所幫助。感興趣的朋友可以繼續參閱本站其他相關專題,如有不足之處,歡迎留言指出。感謝朋友們對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

洛宁县| 化隆| 张家界市| 贵溪市| 丽水市| 修水县| 达拉特旗| 岳西县| 麦盖提县| 甘洛县| 平乐县| 武夷山市| 永昌县| 新竹市| 永安市| 衢州市| 东方市| 巨野县| 庄浪县| 临汾市| 安吉县| 龙口市| 惠州市| 永顺县| 河池市| 富顺县| 佛冈县| 平罗县| 丹凤县| 壤塘县| 义乌市| 汉沽区| 城固县| 资兴市| 英德市| 阜南县| 云龙县| 大关县| 铜鼓县| 林芝县| 巢湖市|