ftp软件,ftp软件 中文

说到ftp软件,我首先想到的就是上传下载,很多人都是用来做这个,但是也有很多人都不知道它是干什么的,其实ftp软件一般是从事网站工作者使用的。平常使用的人不是很多,像小编就是,等到真正要使用的时候根本就不知道该怎么做,该怎么选择,只能在网上单纯的下载,觉得好用就用,不好用只能删了,再重新下载。体验了这么多的ftp软件,才知道它为什么可以收到大家的宠爱。接下来给大家介绍一款中文 ftp软件,还有java配置教程。

使用工具:IIS7服务器管理软件

iis7远程桌面管理软件,是一款绿色小巧,功能实用的FTP工具软件,其界面简洁,操作方便,它支持FTP批量上传下载,它可以同时连接多台ftp服务器进行文件传输工作,还可以在线解压缩文件,支持文件查找,在线编辑等功能。
同时它还能够同时远程操作多台服务器,并且多台服务器间可以自由切换,适合机房管理、站长、运维工作、程序员使用。适用于Windows系统,Linux系统和VPS服务器等。
在众多好用实用的功能当中,最大的亮点还是属定时上传下载的强大功能了,它可以定时备份,自动更新等,大家都在用,还等什么呢~

下载地址:IIS7服务器管理工具

在这里插入图片描述

Java配置方式:

import com.enterprisedt.net.ftp.*;
public class FtpClient {
static FTPClient ftpClient;
public FtpClient(){};
String remoteAddress=“192.168.168.33”,userName=“cattsoft”,password=“cattsoft”;

public void DownLoad(){
try{
FTPClient client = new FTPClient();
client.setRemoteHost(remoteAddress);
client.connect();
client.login(userName,password);
client.setType(FTPTransferType.BINARY);
client.get(“E:\upload\index.jsp”,"/home/cattsoft/jakarta-tomcat-5.0.28/webapps/vip/dkf/index2.jsp");
client.quit();
System.out.println(“下载成功...”);
}catch(Exception e){
e.printStackTrace();
System.out.println(“下载失败...”);
}
}

public static void main(String[] args){
FtpClient fc = new FtpClient();
fc.DownLoad();
}
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值