共计 1987 个字符,预计需要花费 5 分钟才能阅读完成。
FTP 连接的办法以及配置方式是怎样的,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面丸趣 TV 小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
使用 FTP 上传工具进行远程连接
FTP 用于在 FTP 服务器和 FTP 客户端之间上传和下载文件,它最优秀的功能就是可以批量管理, 可以将文件从一个主机传输到另一个主机。
地址:
FTP 上传工具
使用 FTP 上传工具最优秀的功能就是可以批量管理、批量上传,适用于 Windows 系统,Linux 系统和云服务器等,能极大的提高站长及服务器运维人员工作效率,同时 FTP 上传工具还是 vnc 客户端,真正实现了一站式管理,非常方便。
java 下配置连接 FTP:
public void putTxtToFTP() {
System.out.println( 开始执行定时器任务:维系一键订单量! Calendar calendar = Calendar.getInstance();
calendar.add(Calendar.DATE, -1); // 得到前一天
Date date = calendar.getTime();
SimpleDateFormat df = new SimpleDateFormat( yyyyMMdd
String yesterday = df.format(date);
StringBuffer yjtjOrderTxt = new StringBuffer();
yjtjOrderTxt.append(yjtywx_).append(yesterday).append( .txt
List WxActiveData yjtjOrderList = activeDataService.wxGetYjtjOrder();
//FtpUtil ftpUtil = new FtpUtil( hexin , hx105155 , 134.64.105.155 , /yjtydd // 测试库 FTP
FtpUtil ftpUtil = new FtpUtil( ahftp , ahdx@#$_123dic , 192.168.0.28 , /yjtydd
PrintWriter printWriter = null;
File highFeeFile = new File(Contants.FILE_PATH_BAK + yjtjOrderTxt);//Contants.FILE_PATH_BAK = /opt/wss/domains/tmp/
// File highFeeFile = new File(D:/ + highFeeTxt);
// File gjmyFile = new File(D:/ + gjmyTxt);
//File highFeeFile = new File(D:/ + yjtjOrderTxt);
try { printWriter = new PrintWriter(new FileWriter(highFeeFile, true));
for (int i = 0; i yjtjOrderList.size(); i++){ printWriter.println(yjtjOrderList.get(i).toString().trim());
}
} catch (IOException e) {
System.out.println( 主动服务 高额数据报表任务异常! }finally{ printWriter.close();
}
if(highFeeFile.exists()){ System.out.println( 主动服务定时器任务 高额数据 上传成功 +yjtjOrderTxt.toString());
ftpUtil.uploadFile(highFeeFile, yjtjOrderTxt.toString());
}else{ System.out.println( 主动服务定时器任务 高额数据 上传失败 +yjtjOrderTxt.toString());
}
System.out.println( 服务器批量查排名 - 查询结果
}
public ActiveDataService getActiveDataService() {
return activeDataService;
}
public void setActiveDataService(ActiveDataService activeDataService) {
this.activeDataService = activeDataService;
}
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注丸趣 TV 行业资讯频道,感谢您对丸趣 TV 的支持。
正文完