commons net 下的FTPClient使用时的一些小问题

原始发表时间:2009-08-20

 

    FTPClient上传文件时,必须先关闭在服务器上打开的输出流对象,而后再等待命令结束后登出,否则会丢失文件的最后部分。
    另外,想避免乱码,得用FTPClient 的 setControlEncoding 方法来设置编码,不过这仅仅是针对文件内容而言,传输的文件名称如果有中文的话,还是得进行转码。
    下面黑体字 标识了这些需要注意的关键点相关的代码。

参考文章
http://blog.csdn.net/wangjian5748/archive/2008/11/28/3404619.aspx


得到的最终可用的正确代码如下:
        FTPClient ftpclient = new FTPClient();
        try {
            listener.setProgress(TOTAL, 1, "连接 FTP...");
            ftpclient.connect(...);
        } catch (SocketException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }

        try {
            listener.setProgress(TOTAL, 2, "登录 FTP...");
            ftpclient.login(...);
        } catch (IOException e) {
            e.printStackTrace();
        }
        try {
            ftpclient.setFileType(org.apache.commons.net.ftp.FTP.BINARY_FILE_TYPE);
            ftpclient.setControlEncoding("GBK");
            listener.setProgress(TOTAL, 3, "检测 FTP 目录...");
            String submitdatadir = ...;
            ftpclient.changeWorkingDirectory(submitdatadir);
            listener.setProgress(TOTAL, 4, "传输文件...");
            OutputStream output = ftpclient.storeFileStream(new String(submitDataFileName.getBytes("GBK"), "iso8859-1") );
            if (output == null) {
                log.debug("ReplyCode:" + ftpclient.getReplyCode());
            }
            String submitDataFileLocalPath = submitDataFileLocalDir + File.separatorChar + submitDataFileLocalName;
            InputStream input = new FileInputStream(submitDataFileLocalPath);
            int totalsize = input.available();
            log.debug("totalsize : " + totalsize);
            byte[] buffer = new byte[1024];
            int count = 0;
            int n = 0;
            while (-1 != (n = input.read(buffer))) {
                output.write(buffer, 0, n);
                count += n;
                log.debug("count: " + count);
                listener.setProgress(TOTAL, 5, "传输文件,已传输 " + (count * 100 / totalsize) + "% ...");
            }
            output.close();
            input.close();
            if (ftpclient.completePendingCommand()) {
                log.debug("logout: " + ftpclient.logout());
                ftpclient.disconnect();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值