Java FTP 550错误 [英] Java FTP 550 error

查看:544
本文介绍了Java FTP 550错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我遇到此错误(550文件名,目录名或卷标签语法不正确.) 我认为该网址是正确的(显然不是).有什么想法吗?

I'm getting this error (550 the filename, directory name, or volume label syntax is incorrect. ) I think the url is correct (obviously not though). Any thoughts?

以下是网址:

STOR /images/report/6F81CB22-3D04-4BA3-AC3F-3D34663449E0**9.png

这是调用方法:

private void uploadImageToFtp(String location, String imageName) throws Exception{

        File imageFile = new File(location);

        System.out.println("Start");
        FTPUploader ftpUploader = new FTPUploader("ftp.xxx.com", "user", "password");

        ftpUploader.uploadFile(imageFile, imageName, "/images/report/");

        imageFile.delete();
        ftpUploader.disconnect();
        System.out.println("Done");
    }
Here is the

ftp类:

package server;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;

import org.apache.commons.net.PrintCommandListener;
import org.apache.commons.net.ftp.FTP;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply;

public class FTPUploader {

    FTPClient ftp = null;

    public FTPUploader(String host, String user, String pwd) throws Exception{


        ftp = new FTPClient();
        ftp.addProtocolCommandListener(new PrintCommandListener(new PrintWriter(System.out)));
        int reply;
        ftp.connect(host);
        reply = ftp.getReplyCode();
        if (!FTPReply.isPositiveCompletion(reply)) {
            ftp.disconnect();
            throw new Exception("Exception in connecting to FTP Server");
        }
        ftp.login(user, pwd);
        ftp.setFileType(FTP.BINARY_FILE_TYPE);
        ftp.enterLocalPassiveMode();
    }
    public void uploadFile(File file, String fileName, String hostDir)
            throws Exception {

        try {
            InputStream input = new FileInputStream(file);
            this.ftp.storeFile(hostDir + fileName, input);

        } catch (Exception e) {

            // TODO: handle exception
            e.printStackTrace();
        }

    }

    public void disconnect(){
        if (this.ftp.isConnected()) {
            try {
                this.ftp.logout();
                this.ftp.disconnect();
            } catch (IOException f) {
                // do nothing as file is already saved to server
                f.printStackTrace();
            }
        }
    }
}

推荐答案

如果FTP服务器正在运行Windows,则可能是'*'字符. Windows文件名可能不会有星号.

If the FTP server is running Windows, the '*' characters are the problem. Windows file names may not have asterisks.

这篇关于Java FTP 550错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆