我創建了一個從我有權訪問的FTP服務器下載文件的功能。我如何將文件上傳回FTP服務器?如何將文件上傳到FTP服務器?
下面是download_files方法我用:
public static void download_files(String un, String pw, String ip, String dir, String fn, String fp){
URLConnection con;
BufferedInputStream in = null;
FileOutputStream out = null;
try{
URL url = new URL("ftp://"+un+":"+pw+"@"+ip+"/"+dir+"/"+fn+";type=i");
con = url.openConnection();
in = new BufferedInputStream(con.getInputStream());
out = new FileOutputStream(fp+fn);
int i = 0;
byte[] bytesIn = new byte[1024];
while ((i = in.read(bytesIn)) >= 0) {
out.write(bytesIn, 0, i);
}
}catch(Exception e){
System.out.print(e);
e.printStackTrace();
System.out.println("Error while FTP'ing "+fn);
}finally{
try{
out.close();
in.close();
}catch(IOException e){
e.printStackTrace();
System.out.println("Error while closing FTP connection");
}
}
}
可能重複[如何使用java實現FTP?](http://stackoverflow.com/questions/4720539/how-to-implement-ftp-using-java) – CoolBeans
我有疑問,這是上面的代碼(從ftp下載文件)將工作在Android? –