-
Notifications
You must be signed in to change notification settings - Fork 43
FTP upload
cheyiliu edited this page Dec 10, 2014
·
4 revisions
- FTPClient
- 多级目录要一级一级地创建
ftp.makeDirectory("/to_be_deleted/");
ftp.makeDirectory("/to_be_deleted/1013/");
ftp.makeDirectory("/to_be_deleted/1013/123");
- 上传mp4文件后,在下载下来却不能播放了
原因是FTPClient的setFileType(FTP.BINARY_FILE_TYPE); file type要设置正确
FTP.BINARY_FILE_TYPE, A constant used to indicate the file(s) being transfered should be treated as a binary image, i.e., no translations should be performed.
Just build something.