我正在使用apache org.apache.commons.net.ftp.FTPClient将文件上传到Apache FTPServer。当我调用org.apache.commons.net.ftp.FTPClient.storeFile时,它总是失败,输出文件" 551错误"错误。
这是我的程序
public class FileOperations {
def ftp (params) {
def ftp = new FTPClient()
try {
ftp.connect(params.host, params.port)
println ftp.getReplyString()
int reply = ftp.getReplyCode();
if(!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
System.err.println("FTP server refused connection.");
return
}
boolean successLogin = ftp.login(params.username, params.password)
println ftp.getReplyString()
if(!successLogin) {
println "FTP login unsuccessful "+params.username
return
}
ftp.setFileType(FTPClient.BINARY_FILE_TYPE)
println ftp.getReplyString()
ftp.setFileTransferMode(FTPClient.STREAM_TRANSFER_MODE)
println ftp.getReplyString()
String absoluteFilename=params.file
def isSuccessful = ftp.storeFile(params.file,new FileInputStream(absoluteFilename))
println ftp.getReplyString()
ftp.logout()
} finally {
if(ftp.isConnected())
ftp.disconnect()
}
}
static main(args) {
def operations = new FileOperations();
def params = [:]
params.put "host","localhost"
params.put "port",2121
params.put "username","test"
params.put "password","test"
params.put "file","C:/tmp/sample.txt"
operations.ftp(params)
}
}
220为新用户准备的服务。
230用户已登录,继续。
200命令类型没关系。
200 Command MODE没关系。
551 /C:/tmp/sample.txt:输出文件出错。
我无法理解此错误的含义。有人可以帮我解决这个问题吗?
答案 0 :(得分:2)
有
params.put "file","C:/tmp/sample.txt"
你正在使用它作为远程文件名,它应该是绝对或相对路径名,相对于FTP用户的FTP端根目录,也许只是" sample.txt的&#34 ;. (FTP服务器上没有C:
等设备。)
要阅读本地文件名,您必须使用完整路径名,就像现在一样:
String localFilename = "C:/tmp/sample.txt".
def isSuccessful = ftp.storeFile(params.file,new FileInputStream(localFilename))