代码拉取完成,页面将自动刷新
FTPClient ftp;
open() {
ftp = new FTPClient();
//添加控制台ftp操作过程日志打印
ftp.addProtocolCommandListener(new PringCommandListener(new PrintWriter(System.out)));
//设置超时时间
ftp.setDefualtTimeout(3000);
ftp.setConnectTimeout(3000);
ftp.setDAtaTimeout(3000);
//设置被动连接模式
ftp.enterLocalPassiveMode();
}
//文件上传
upload(String relativePath, String fileName, InputStream inputStream) {
String filePath = basePath+relativePath+"/";
if (ftp.cwd(filePath) == 550) {
filePath = basePath;
//目录只能一级级创建
for (String s : relativePath.split("/")) {
filePath += s+"/";
if (ftp.cwd(filePath) == 550) {
ftp.makeDirectory(filePath);
}
}
return ftp.storeFile(filePath+fileName,inputStream);
}
return ftp.storeFile(filePath+fileName,inputStream);
}
//使用流程
FtpClient ftpClient = new FtpClient(参数...);
try {
ftpClient.open();
do something...
ftpClient.logout();
} finally {
ftpClient.disconnect();
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。