gpt4 book ai didi

java - 在 Java 中通过 SSL 的 425 错误 ftp

转载 作者:太空宇宙 更新时间:2023-11-03 15:06:33 27 4
gpt4 key购买 nike

使用 Apache 公共(public)库,我试图将文件或列出目录内容放在使用 FTP over SSL 连接的远程服务器上。

public void outboundProcessFile(String inputFilePath, String outputFilePath) throws Exception {

File inFile = new java.io.File(inputFilePath);
if (args == null){
System.exit(-1) ;
}
String args[] = this.args;

boolean storeFile = false, binaryTransfer = false, error = false, listFiles = false, listNames = false, hidden = false;
boolean mlst = false, mlsd = false;
boolean lenient = true;
boolean feat = true;;
long keepAliveTimeout = 300000;
int controlKeepAliveReplyTimeout = 300000;
int minParams = 5;
String doCommand = "PROT P";//null
String server = null, password = null, username = null, remote = null,local = null;
int port = 990;//990
int base = 0;
for (base = 0; base < args.length; base++) {
if (args[base].equals("-s")) {
storeFile = true;
} else if (args[base].equals("-b")) {
binaryTransfer = true;
} else if (args[base].equals("-c")) {
doCommand = args[++base];
minParams = 3;
} else if (args[base].equals("-d")) {
mlsd = true;
minParams = 3;
} else if (args[base].equals("-h")) {
hidden = true;
} else if (args[base].equals("-k")) {
keepAliveTimeout = Long.parseLong(args[++base]);
} else if (args[base].equals("-l")) {
listFiles = true;
minParams = 3;
} else if (args[base].equals("-L")) {
lenient = true;
} else if (args[base].equals("-n")) {
listNames = true;
minParams = 3;
} else if (args[base].equals("-t")) {
mlst = true;
minParams = 3;
} else if (args[base].equals("-w")) {
controlKeepAliveReplyTimeout = Integer.parseInt(args[++base]);
} else if (args[base].equals("-sh")) {
server = args[++base];
String parts[] = server.split(":");
if (parts.length == 2){
server=parts[0];
port=Integer.parseInt(parts[1]);
}
} else if (args[base].equals("-u")) {
username = args[++base];
} else if (args[base].equals("-pw")) {
password = args[++base];
} else if (args[base].equals("-rf")) {
remote = null;

if (args.length - base > 0) {
remote = args[++base];
}
} else if (args[base].equals("-lf")) {
local = null;

if (args.length - base > 0) {
local = args[++base];
}
} else {
break;
}
}

FTPClient ftp;
FTPSClient ftps = new FTPSClient(true);

ftp = ftps;
ftps.setTrustManager(TrustManagerUtils.getAcceptAllTrustManager());
ftp.setCopyStreamListener(createListener());

if (keepAliveTimeout >= 0) {
ftp.setControlKeepAliveTimeout(keepAliveTimeout);
}
if (controlKeepAliveReplyTimeout >= 0) {
ftp.setControlKeepAliveReplyTimeout(controlKeepAliveReplyTimeout);
}
ftp.setListHiddenFiles(hidden);

// suppress login details
ftp.addProtocolCommandListener(new PrintCommandListener(new PrintWriter(System.out), true));

try {
int reply;
if (port > 0) {
ftp.connect(server, port);
} else {
ftp.connect(server);
}
System.out.println("Connected to " + server + " on "+ftp.getRemotePort());

// After connection attempt, you should check the reply code to verify
// success.
reply = ftp.getReplyCode();

if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
System.err.println("FTP server refused connection.");
System.exit(1);
}
}
catch (IOException e) {
if (ftp.isConnected()) {
try {
ftp.disconnect();
}
catch (IOException f)
{
// do nothing
}
}
System.err.println("Could not connect to server.");
e.printStackTrace();
System.exit(1);
}

__main:
try
{
String userid = null;//

if (!ftp.login(username, password)) {
ftp.logout();
error = true;
break __main;
}

System.out.println("Remote system is " + ftp.getSystemType());
if (feat) {
// boolean feature check
if (remote != null) { // See if the command is present
if (ftp.hasFeature(remote)) {
System.out.println("Has feature: "+remote);
} else {
if (FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
// System.out.println("FEAT "+remote+" was not detected");
} else {
System.out.println("Command failed: "+ftp.getReplyString());
}
}

// Strings feature check
String []features = ftp.featureValues(remote);
if (features != null) {
for(String f : features) {
System.out.println("FEAT "+remote+"="+f+".");
}
} else {
if (FTPReply.isPositiveCompletion(ftp.getReplyCode())) {
// System.out.println("FEAT "+remote+" is not present");
} else {
System.out.println("Command failed: "+ftp.getReplyString());
}
}
} else {
if (ftp.features()) {
// Command listener has already printed the output
} else {
System.out.println("Failed: "+ftp.getReplyString());
}
}
}
ftp.doCommandAsStrings("PBSZ", "0");
ftp.doCommandAsStrings("PROT", "P");
if (binaryTransfer)
ftp.setFileType(FTP.ASCII_FILE_TYPE);//.BINARY_FILE_TYPE);

// Use passive mode as default because most of us are
// behind firewalls these days.

ftp.enterLocalPassiveMode();
ftp.doCommand("MLSD", "");

if (storeFile) {
InputStream input;

input = new FileInputStream(local);
ftp.changeWorkingDirectory(remote);
ftp.storeFile(local.substring(local.lastIndexOf("/")+1), input);

input.close();
} else if (listFiles) {
if (lenient) {
FTPClientConfig config = new FTPClientConfig();
config.setLenientFutureDates(true);
ftp.configure(config );
}

for (FTPFile f : ftp.listFiles(remote)) {
System.out.println(f.getRawListing());
System.out.println(f.toFormattedString());
}
} else if (mlsd) {
for (FTPFile f : ftp.mlistDir(remote)) {
System.out.println(f.getRawListing());
System.out.println(f.toFormattedString());
}
} else if (mlst) {
FTPFile f = ftp.mlistFile(remote);
if (f != null){
System.out.println(f.toFormattedString());
}
} else if (listNames) {
for (String s : ftp.listNames(remote)) {
System.out.println(s);
}
} else {
OutputStream output;

output = new FileOutputStream(local);
ftp.changeWorkingDirectory(remote);
ftp.retrieveFile(local.substring(local.lastIndexOf("/")), output);

output.close();
}

ftp.noop(); // check that control connection is working OK
ftp.logout();
} catch (FTPConnectionClosedException e) {
error = true;
System.err.println("Server closed connection.");
e.printStackTrace();
} catch (IOException e) {
error = true;
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException f) {
// do nothing
}
}
}
System.exit(error? -1:0);
}

我运行它并获得列表的控制台输出...

220 Serv-U FTP Server v6.4 for WinSock ready...
Connected to ftps.server.com on 990
USER *******
331 User name okay, need password.
PASS *******
230 User logged in, proceed.
SYST
215 UNIX Type: L8
Remote system is UNIX Type: L8
FEAT
211-Extension supported
AUTH TLS
SSCN
PBSZ
PROT
CCC
CLNT
MDTM
MDTM YYYYMMDDHHMMSS[+-TZ];filename
SIZE
SITE PSWD;EXEC;SET;INDEX;ZONE;CHMOD;MSG
REST STREAM
XCRC filename;start;end
MODE Z
MLST Type*;Size*;Create;Modify*;Win32.ea*;
211 End
PBSZ 0
200 PBSZ command OK. Protection buffer size set to 0.
PROT P
200 PROT command OK. Using private data connection.
TYPE A
200 Type set to A.
MLSD
150 Opening BINARY mode data connection for MLSD.
PASV
227 Entering Passive Mode (204,124,192,88,195,82)
LIST Directory/toIC/
425 Try later, data connection in use.
NOOP
150 Opening BINARY mode data connection for MLSD.
QUIT
200 Command okay.

如果我不使用 MLSD 并尝试上传文件,我会看到一个 0 字节的文件,文件名放在服务器上(通过 FileZilla),我会收到 421 错误。想法?

最佳答案

我不得不删除 MLSD 命令。我现在可以列出、检索和存储。

关于java - 在 Java 中通过 SSL 的 425 错误 ftp,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7196630/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com