
ftp
fengchen0123456789
赢的是过程,输的是结果
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ftp 上传文件报错 Software caused connection abort: recv failed
服务端是是linux,我的是Windows10环境 解决 // 连接ftp服务器 FTPClient connect = FtpUtils.connect("ftphost", port, "username", "pwd"); // 解决 Software caused connection abort: recv failed 异常 connect.enterLocalPassi...原创 2019-08-19 09:18:24 · 2519 阅读 · 0 评论 -
sftp demo
自己项目简单使用,所以就随便封装了一下,有需要根据自己的需求改原创 2019-09-02 16:43:28 · 310 阅读 · 0 评论 -
根据阿里云图片路径生成 byte[]
主要用于sftp,ftp使用,所以分类就放在 ftp算了 /** * 根据阿里云图片路径生成byte字节数组 * * @param img 阿里云图片路径 * @return 返回图片的字节数组 */ public byte[] imgPathBytes(String img) { // 设置参数 In...原创 2019-09-02 17:03:40 · 899 阅读 · 0 评论 -
ftp 工具封装
maven <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> </dependency> FtpUtils 自行根据需求找合适的修改,这里写的有点乱,是变测试边修改的 import ...原创 2019-09-02 17:31:05 · 296 阅读 · 0 评论