你是否遇到需要在Java中操縱一個FTP(File Transfer Protocol
安裝很簡單
例如
import java
import
import
public class FtpExample {
static public void main(String[] args) {
try {
FTPClient fc = new FTPClient(
// username
fc
String[] files = fc
for(int i=
}
fc.quit();
} catch(IOException ioe) {
ioe.printStackTrace();
} catch(FTPException ftpe) {
ftpe.printStackTrace();
}
}
}
在這個范例代碼中,用戶bayard的主目錄中的內容被打印到標准輸出。TW.WInGWIT.cOm這個FTP庫同時提供改變、創建和刪除目錄以及取得、上傳或者刪除文件的方法。使用這個庫需要記住的最重要的事情,也和任何ftp的用法一樣:在服務器間移動非文本文件時切換到二進制模式。方法時:
fc.setType( FTPTransferType.BINARY);
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19447.html