ftp解压工具,ftp解压工具连接以及配置方式

使用IIS7服务器管理工具进行远程连接FTP服务器

地址:IIS7服务器管理工具

FTP1.JPG

IIS7服务器管理工具是一款windows全系、Linux系统下链接并操控VPS、VNC、FTP等远程服务器、云服务器。
界面简单明了,操作易上手,功能强大,支持批量导入服务器,并批量打开,多窗口化管理,除此之外,加载本地硬盘、硬盘映射、加载服务器的声音,远程声卡读取等,完全实现各类场景使用,对于FTP链接界面,朋友FTP定时上传,定时下载(也可以说定时上传下载 定时备份),对于经常使用FTP的小伙伴来说,非常适用。
工具支持自动更新,压缩包只有7.62M,方便简洁,一步到位。

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;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值