java web FTPClient实现上传文件到指定服务器
程序员文章站
2023-12-20 16:42:11
fpclient 实现上传文件到指定服务器,供大家参考,具体内容如下
调用
fileinputstream in=new fileinputstream(ne...
fpclient 实现上传文件到指定服务器,供大家参考,具体内容如下
调用
fileinputstream in=new fileinputstream(new file(fileurl)); movefile("10.3.3.**", 21, "username", "password", path, filename, in);
方法
/** * description: 向ftp服务器上传文件 * @param url ftp服务器hostname * @param port ftp服务器端口 * @param username ftp登录账号 * @param password ftp登录密码 * @param path ftp服务器保存目录 * @param filename 上传到ftp服务器上的文件名 * @param input 输入流 * @return 成功返回true,否则返回false */ public static boolean movefile(string url,int port,string username, string password, string path, string filename, inputstream input) { boolean success = false; ftpclient ftp = new ftpclient(); try { int reply; ftp.connect(url, port);//连接ftp服务器 //如果采用默认端口,可以使用ftp.connect(url)的方式直接连接ftp服务器 ftp.login(username, password);//登录 reply = ftp.getreplycode(); if (!ftpreply.ispositivecompletion(reply)) { ftp.disconnect(); return success; } //创建路径 try{ ftp.makedirectory(path); }catch(exception e){ } ftp.enterlocalpassivemode(); ftp.changeworkingdirectory(path); boolean f= ftp.storefile(filename, input); logger.error(f); input.close(); ftp.logout(); success = true; } catch (ioexception e) { e.printstacktrace(); } finally { if (ftp.isconnected()) { try { ftp.disconnect(); } catch (ioexception ioe) { } } } return success; }
一些细节
fileinputstream.available()返回的实际可读字节数,也就是总大小。
ftpclient.storefile()方法时,就停止在那里,什么反应都没有,出现假死状态。
解决方法: 调用ftpclient.enterlocalpassivemode()
原 理: 因为ftp server可能每次开启不同的端口来传输数据,但是在linux上或者其他服务器上面,由于安全限制,可能某些端口没有开启,所以就出现阻塞
ftp默认端口为21 ssh为22 实际传输端口为20
查看指定端口,例21
netstat -na|grep 21(端口号)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。