package DAO.FTP; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.io.InputStream; import java.util.UUID; import sun.net.TelnetInputStream; import sun.net.ftp.FtpClient; public class FTPDemo {private String ftpDownload(String downloadPath,String savePath,String filename,boolean isCEB,String datepath) { String uuid = UUID.randomUUID().toString(); if(isCEB) { savePath = savePath+"/"+datepath; } try { String ip = "172.79.60.44"; int port = 21; String user = "root"; String password = "jjhtmz"; FtpClient ftpClient = null; ftpClient = new FtpClient(); ftpClient.openServer(ip, port); ftpClient.login(user, password); ftpClient.binary(); TelnetInputStream is = ftpClient.get(downloadPath); java.io.File file_in = new java.io.File(savePath); if(!file_in.exists()) { file_in.mkdirs(); } if(isCEB) { file_in = new java.io.File(savePath+"/"+uuid+filename); }else { file_in = new java.io.File(savePath+"/"+uuid+"_"+filename); } FileOutputStream os = new FileOutputStream(file_in); byte[] bytes = new byte[1024]; int c; while ((c = is.read(bytes)) != -1) { os.write(bytes, 0, c); } os.close(); is.close(); } catch (IOException e) { e.printStackTrace(); } return uuid; } }
最近下载更多
caomin LV4
2023年5月25日
2089675149 LV7
2023年2月17日
wddlhysss LV5
2021年3月11日
落轩昂 LV12
2020年11月30日
wangshixi2010 LV3
2020年8月21日
wangmeicong LV12
2020年7月15日
zuiwomengjiaren LV11
2019年10月9日
yongyuan0230 LV4
2019年7月26日
xuanshao940 LV2
2019年7月11日
13072368302 LV8
2019年7月2日
最近浏览更多
shaohuaqingfu LV3
11月6日
escape1023
2月13日
暂无贡献等级
3334004690 LV10
2023年11月1日
edpwyg LV14
2023年10月21日
钱小小 LV3
2023年7月16日
caomin LV4
2023年5月25日
qiuyuqiuyuqiuyu
2023年5月25日
暂无贡献等级
matintalorr LV10
2023年5月9日
weixiao LV6
2023年5月7日
2089675149 LV7
2023年2月17日