加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
FtpUtil.java 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
Midoriya 提交于 2019-11-27 19:14 . ftp使用流程更新
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();
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化