高分求大神解答,java 操作FTP的问题

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了高分求大神解答,java 操作FTP的问题相关的知识,希望对你有一定的参考价值。

项目需要实现java下载客户方远程FTP上的文件
在我本地,使用FTP客户端和谷歌浏览器是可以正常使用FTP服务器的。
使用IE浏览器登录后一直卡在跳转。
JAVA中使用的是org.apache.commons.net这个包,代码是绝对没有问题的,可以连接成功并进入文件夹
但是无法读取文件夹下的文件。
ftp用户权限是没有问题的。

参考技术A 检查你自己的代码,确定ftp有读权限,如果实在不行,网上找段代码,参照重新写一个试试,有时候自己写的代码小小的错误很难发现。 参考技术B

public String download(String remote, String local) throws IOException
        // 设置被动模式
        ftpClient.enterLocalPassiveMode();
        // 设置以二进制方式传输
        ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
        String result;

        // 检查远程文件是否存在
        FTPFile[] files = ftpClient.listFiles(new String(remote.getBytes("GBK"), "iso-8859-1"));
        if (files.length != 1)
            System.out.println("远程文件不存在");
            return "Remote_File_Noexist";
        

        long lRemoteSize = files[0].getSize();
        File f = new File(local);
        // 本地存在文件,进行断点下载
        if (f.exists())
            long localSize = f.length();
            // 判断本地文件大小是否大于远程文件大小
            if (localSize >= lRemoteSize)
                System.out.println("本地文件大于远程文件,下载中止");
                return "Local_Bigger_Remote";
            

            // 进行断点续传,并记录状态
            FileOutputStream out = new FileOutputStream(f, true);
            ftpClient.setRestartOffset(localSize);
            InputStream in = ftpClient.retrieveFileStream(new String(remote.getBytes("GBK"), "iso-8859-1"));
            byte[] bytes = new byte[1024];
            long step = lRemoteSize / 100;
            long process = localSize / step;
            int c;
            while ((c = in.read(bytes)) != -1)
                out.write(bytes, 0, c);
                localSize += c;
                long nowProcess = localSize / step;
                if (nowProcess > process)
                    process = nowProcess;
                    if (process % 10 == 0)
                        System.out.println("下载进度:" + process);
                    // TODO 更新文件下载进度,值存放在process变量中
                
            
            in.close();
            out.close();
            boolean isDo = ftpClient.completePendingCommand();
            if (isDo)
                result = "Download_From_Break_Success";
             else
                result = "Download_From_Break_Failed";
            
         else
            OutputStream out = new FileOutputStream(f);
            InputStream in = ftpClient.retrieveFileStream(new String(remote.getBytes("GBK"), "iso-8859-1"));
            byte[] bytes = new byte[1024];
            long step = lRemoteSize / 100;
            long process = 0;
            long localSize = 0L;
            int c;
            while ((c = in.read(bytes)) != -1)
                out.write(bytes, 0, c);
                localSize += c;
                long nowProcess = localSize / step;
                if (nowProcess > process)
                    process = nowProcess;
                    if (process % 10 == 0)
                        System.out.println("下载进度:" + process);
                    // TODO 更新文件下载进度,值存放在process变量中
                
            
            in.close();
            out.close();
            boolean upNewStatus = ftpClient.completePendingCommand();
            if (upNewStatus)
                result = "Download_New_Success";
             else
                result = "Download_New_Failed";
            
        
        return result;
    


追问

请不要复制粘贴,浪费时间

追答

自己之前写的代码。。。

追问

多谢,虽然没解决我的问题,还是非常感谢您

参考技术C 既然代码绝对没问题那就是人品的问题了罗

java备份mysql数据库,求大神解答。

我目前写的方法,public static bakupMysql(String url,String username,String password,String cron,String port,String bakupPath)
求大神解答。没有财富值了。

参考技术A 1 public static String comman="C:/Program Files/MySQL/MySQL Server 5.5/bin/mysql.exe -uroot -proot test";
2 public static void back(String mySqlBackupName,String mysqlBackupPath, String command)
3
4 String fPath=mysqlBackupPath+"/"+new Date().getTime()+".sql";
5
6 Runtime rt = Runtime.getRuntime();
7 try
8 Process child = rt.exec(command);
9 InputStream in = child.getInputStream();追问

完事儿吗?

以上是关于高分求大神解答,java 操作FTP的问题的主要内容,如果未能解决你的问题,请参考以下文章

Java操作word里的表格问题,高分在线等!

Java 求大神们解答:自定义异常,处理异常

求大神用java实现RC4的加密,解密功能,高分悬赏.

Java算法bug求大神解答。。明天交作业 急急急急急急

几道java基础题 求大神解答

求大神帮写个MYSQL增删改查 高分求救