FTP测试工具类「建议收藏」

FTP测试工具类「建议收藏」因项目现场无法部署IDE工具联调FTP服务器,开发个简单的小工具,打成jar部署联调测。一下是该工具的源代码。packagecn.org.july.ftp;importorg.apache.commons.net.ftp.FTPClient;importorg.apache.commons.net.ftp.FTPFile;importorg.apache.commons.net….

大家好,又见面了,我是你们的朋友全栈君。

在进入正文前,先给大家分享一款比较好用的服务器连接工具
IIS7服务器管理工具是一款windows全系下用于连接并操控基于windows和linux系统的VPS、VNC、FTP等远程服务器、云服务器的管理工具。
界面简单明了,操作易上手,功能强大,支持批量导入服务器,并批量打开,多窗口化管理,除此之外,加载本地硬盘、硬盘映射、加载服务器的声音,远程声卡读取等功能也一应俱全,完全实现了各类场景使用,对于FTP连接界面,其中FTP文件的定时上传,定时下载(也可以说定时上传下载、定时备份)功能,对于经常使用FTP的小伙伴来说,也是非常适用的。
工具支持自动更新,压缩包只有7.62M,方便简洁,一步到位。
下载地址:IIS7服务器管理工具
简单的使用步骤可以看下面的截图,做了详细标注:
在这里插入图片描述
在这里插入图片描述

下面开始我们文章的内容

因项目现场无法部署IDE工具联调FTP服务器,开发个简单的小工具,打成jar部署联调测。一下是该工具的源代码。

package cn.org.july.ftp;

import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;

import java.io.*;
import java.net.SocketException;
import java.util.Scanner;

public class FtpTest {

    private static String address = "";
    private static int port = 21;
    private static String userName;
    private static String pwd;
    private static FTPClient ftpClient;
    private static String userDir = System.getProperty("user.dir");


    public static void init() {
        Scanner scan = new Scanner(System.in);
        System.out.println("please enter the FTP service address: (请输入FTP服务地址:)");
        address = scan.nextLine();
        System.out.println("ftp address is ".concat(address));
        System.out.println("please enter the FTP service port:(请输入FTP服务端口:)");
        port = Integer.valueOf(scan.nextLine());
        System.out.println("ftp port is ".concat(port + ""));
        System.out.println("please enter the FTP service user: (请输入FTP服务用户:)");
        userName = scan.nextLine();
        System.out.println("ftp user is ".concat(userName));
        System.out.println("please enter the FTP service pwd: (请输入FTP服务用户密码:)");
        pwd = scan.nextLine();
        System.out.println("ftp pwd is ".concat(pwd));
    }

    public static void connect() {
        try {
            ftpClient = new FTPClient();
            ftpClient.setConnectTimeout(60000);
            ftpClient.connect(address, port);// 连接FTP服务器
            if (FTPReply.isPositiveCompletion(ftpClient.getReplyCode())) {
                if (ftpClient.login(userName, pwd)) {// 登陆FTP服务器
                    if (FTPReply.isPositiveCompletion(ftpClient.sendCommand(
                            "OPTS UTF8", "ON"))) {// 开启服务器对UTF-8的支持,如果服务器支持就用UTF-8编码,否则就使用本地编码(GBK).
                        ftpClient.setControlEncoding("UTF-8");
                    } else {
                        ftpClient.setControlEncoding("GBK");
                    }
                    ftpClient.enterLocalPassiveMode();// 设置被动模式
                    ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);// 设置传输的模式,以二进制流的方式读取
                    ftpClient.enterLocalPassiveMode();
                    System.out.println("FTP服务连接成功!");
                } else {
                    System.out.println("FTP服务用户名或密码错误!");
                    disConnection();
                }
            } else {
                System.out.println("连接到FTP服务失败!");
                disConnection();
            }
        } catch (SocketException e) {
            e.printStackTrace();
            disConnection();
            System.out.println("FTP的IP地址可能错误,请正确配置。");
        } catch (IOException e) {
            e.printStackTrace();
            disConnection();
            System.out.println("FTP的端口错误,请正确配置。");
        }
    }


    /**
     * 关闭FTP服务链接
     *
     * @throws IOException
     */
    public static void disConnection() {
        try {
            if (ftpClient.isConnected()) {
                ftpClient.disconnect();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
    }


    /**
     * 获取文件夹下的所有文件信息
     *
     * @param path 文件路径
     */
    public static void getFTPDirectoryFiles(String path) {
        FTPFile[] files = null;
        try {
            ftpClient.changeWorkingDirectory(path);
            files = ftpClient.listFiles();
            for (FTPFile file : files) {
                System.out.println(file.getName());
            }
        } catch (Exception e) {
            e.printStackTrace();
            System.out.println("FTP读取数据异常!");
        } finally {
            //关闭连接
            disConnection();
        }
    }

    /**
     * 获取文件夹下的所有文件信息
     *
     * @param path 文件路径
     */
    public static void getFTPFile(String path, String fileName) {
        InputStream in = null;
        try {
            ftpClient.changeWorkingDirectory(path);
            FTPFile[] files = ftpClient.listFiles();
            if (files.length > 0) {
                in = ftpClient.retrieveFileStream(new String(fileName.getBytes(), "ISO-8859-1"));
            }
            writeToLocal("ftpFile".concat(File.separator).concat(System.currentTimeMillis() + "").concat(fileName), in);
        } catch (Exception e) {
            e.printStackTrace();
            System.out.println("FTP读取数据异常!");
        } finally {
            //关闭连接
            disConnection();
        }
    }

    /**
     * 将InputStream写入本地文件
     *
     * @param destination 写入本地目录
     * @param input       输入流
     * @throws IOException IOException
     */
    public static void writeToLocal(String destination, InputStream input)
            throws IOException {
        int index;
        byte[] bytes = new byte[1024];
        String downPath = userDir.concat(File.separator).concat(destination);
        File file = new File(downPath);
        if (!file.exists()) {
            if (!file.getParentFile().exists()) {
                file.getParentFile().mkdir();
            }
            file.createNewFile();
        }
        FileOutputStream downloadFile = new FileOutputStream(downPath);
        while ((index = input.read(bytes)) != -1) {
            downloadFile.write(bytes, 0, index);
            downloadFile.flush();
        }
        input.close();
        downloadFile.close();
        System.out.println("文件下载路径:" + downPath);
    }


    public static void operation() throws FileNotFoundException {
        System.out.println("1:下载操作。2:上传操作。3:遍历目录下文件");
        Scanner scan = new Scanner(System.in);
        String exit = scan.nextLine();
        if ("1".equals(exit)) {
            System.out.println("ftp download path (下载路径:)");
            String path = scan.nextLine();
            System.out.println("ftp download path is ".concat(path));
            System.out.println("ftp download fileName(下载文件名称:) ");
            String fileName = scan.nextLine();
            System.out.println("ftp download fileName is ".concat(fileName));
            getFTPFile(path, fileName);
        } else if ("2".equals(exit)) {
            System.out.println("please enter the local file path(请输入本地文件路径E:/test.pdf)");
            String localPath = scan.nextLine();
            System.out.println("local file path is ".concat(localPath));
            System.out.println("please enter the ftp file path (请输入ftp文件路径)");
            String ftpPath = scan.nextLine();
            System.out.println("ftp path is ".concat(ftpPath));
            System.out.println("please enter ftp file name (请输入ftp文件名称)");
            String fileName = scan.nextLine();
            System.out.println("ftp file name is ".concat(fileName));
            boolean b = uploadFile(ftpPath, fileName, new FileInputStream(new File(localPath)));
            if (b) {
                System.out.println("file upload success");
            } else {
                System.out.println("file upload fail");
            }
        } else if ("3".equals(exit)) {
            System.out.println("please enter ftp path:(请输入FTP文件路径)");
            String path = scan.nextLine();
            getFTPDirectoryFiles(path);
        } else {
            System.out.println("操作类型错误。");
        }
    }


    /**
     * Description: 向FTP服务器上传文件
     *
     * @param ftpPath  FTP服务器中文件所在路径 格式: ftptest/aa
     * @param fileName ftp文件名称
     * @param input    文件流
     * @return 成功返回true,否则返回false
     */
    public static boolean uploadFile(String ftpPath,
                                     String fileName, InputStream input) {
        boolean success = false;
        try {
            int reply;
            reply = ftpClient.getReplyCode();
            if (!FTPReply.isPositiveCompletion(reply)) {
                ftpClient.disconnect();
                return success;
            }
            ftpClient.setControlEncoding("UTF-8"); // 中文支持
            ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
            ftpClient.enterLocalPassiveMode();
            if (!ftpClient.changeWorkingDirectory(ftpPath)) {
                System.err.println("不存在");
                boolean makeDirectory = ftpClient.makeDirectory(ftpPath);
                boolean changeWorkingDirectory = ftpClient.changeWorkingDirectory(ftpPath);
                System.err.println(ftpPath + "创建:" + makeDirectory + ";切换:" + changeWorkingDirectory);
            } else {
                ftpClient.changeWorkingDirectory(ftpPath);
            }
            ftpClient.storeFile(fileName, input);
            input.close();
            ftpClient.logout();
            success = true;
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (ftpClient.isConnected()) {
                try {
                    ftpClient.disconnect();
                } catch (IOException ioe) {
                }
            }
        }
        return success;
    }

    public static void main(String[] args) {
        init();
        connect();
        try {
            operation();
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }
}

在这里插入图片描述
在这里插入图片描述

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/138773.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

  • 动态规划:最长回文子串 & 最长回文子序列

    动态规划:最长回文子串 & 最长回文子序列一、题目所谓回文字符串,就是一个字符串,从左到右读和从右到左读是完全一样的,比如“a”、“aba”、“abba”。对于一个字符串,其子串是指连续的一段子字符串,而子序列是可以非连续的一段子字符串。最长回文子串和最长回文子序列(LongestPalindromicSubsequence)是指任意一个字符串,它说包含的长度最长的回文子串和回文子序列。例如:字符串“ABCDDCEFA…

  • ups不间断电源介绍_ups不间断电源设备有哪几部分组成

    ups不间断电源介绍_ups不间断电源设备有哪几部分组成本文简单介绍UPS(不间断电源)的相关知识。1概述UPS(UninterruptedPowerSupply),即不间断电源,是将蓄电池与主机相连接,通过主机逆变器等模块电路,将蓄电池中直流(DC,DirectCurrent)电转换成市电交流(AC,AlternatingCurrent)电的系统设备。UPS主要用于给单台计算机、计算机网络系统或其它电力电子设备如电磁阀、压力变送器…

    2022年10月27日
  • 跨域问题(CORS / Access-Control-Allow-Origin)

    跨域问题(CORS / Access-Control-Allow-Origin)1、前言最近在项目中,调用EurekaREST接口时,出现了CORS跨越问题(Cross-originresourcesharing),在此与大家进行分享,避免多走些弯路。项目前端(http://localhost:9000)通过Ajax方式调用EurekaREST接口(http://localhost:8761/eureka/apps)时,却没有任何反应…

  • nat模式「建议收藏」

    nat模式「建议收藏」原文链接:https://www.linuxidc.com/Linux/2016-09/135521p2.htm(复制过来只是为了学习方便,如有不妥会立即删除)二、NAT(地址转换模式)刚刚我们说到,如果你的网络ip资源紧缺,但是你又希望你的虚拟机能够联网,这时候NAT模式是最好的选择。NAT模式借助虚拟NAT设备和虚拟DHCP服务器,使得虚拟机可以联网。其网络结构如下图所示:在NAT模式中,主机…

  • Hydra暴力破解工具的用法

    目录Hydra常见参数破解SSH破解FTP破解HTTP破解3389远程登录Kali自带密码字典dirb…

  • APP 安全测试(OWASP Mobile Top 10)–后篇之一

    APP 安全测试(OWASP Mobile Top 10)–后篇之一OWASPMobileTop10相对于Web的OWASPTop10来说,个人觉得描述的相对简单多,并且安全测试的时候的可操作性也不是太强。本来打算个人整体捋一遍的,但因为项目时间的问题,前面四个章节安排给了别人去负责,我只负责后面的六章(所以标题写了后篇)。下面我把个人的测试方法简单叙述一下。下面可能有些测试点不全或者有瑕疵,欢迎纠错。。。。OWASPM…

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号