我在程序开始时打开了与FTP服务器的连接。
在我在服务器上执行操作之前,我想检查连接是否已成功建立。最简单的快速方式,如果连接消失,我会再次尝试连接。
我使用此代码执行此操作:
private boolean checkConnection()
{
try
{
boolean success = ftpClient.login(user_name, password);
if(success)
return true;
else
return false;
}
}
但是这个方法在连接关闭时会抛出NullPointer异常。
我可以检查与ftpClient.connect(server, port);
的连接,但这就像试图重新连接一样。
检查连接的方法是什么?
答案 0 :(得分:12)
尝试发送简单的sendNoOp()
并检查回复可能是轻松检查连接的好方法:
private boolean checkConnectionWithOneRetry()
{
try
{
// Sends a NOOP command to the FTP server.
boolean answer = ftpClient.sendNoOp();
if(answer)
return true;
else
{
System.out.println("Server connection failed!");
boolean success = reconnect();
if(success)
{
System.out.println("Reconnect attampt have succeeded!");
return true;
}
else
{
System.out.println("Reconnect attampt failed!");
return false;
}
}
}
catch (FTPConnectionClosedException e)
{
System.out.println("Server connection is closed!");
boolean recon = reconnect();
if(recon)
{
System.out.println("Reconnect attampt have succeeded!");
return true;
}
else
{
System.out.println("Reconnect attampt have failed!");
return false;
}
}
catch (IOException e)
{
System.out.println("Server connection failed!");
boolean recon = reconnect();
if(recon)
{
System.out.println("Reconnect attampt have succeeded!");
return true;
}
else
{
System.out.println("Reconnect attampt have failed!");
return false;
}
}
catch (NullPointerException e)
{
System.out.println("Server connection is closed!");
boolean recon = reconnect();
if(recon)
{
System.out.println("Reconnect attampt have succeeded!");
return true;
}
else
{
System.out.println("Reconnect attampt have failed!");
return false;
}
}
}
答案 1 :(得分:2)
private FTPClient ftp = null;
private void connect()
{
ftp = new FTPClient();
try {
ftp.connect("Server",port);
boolean login = ftp.login("username", "password");
System.out.println(" login "+ login );
} catch (FTPConnectionClosedException e) {
System.err.println("ERROR :: FTP Server Unreachable");
sleep();
connect();
} catch (SocketException e) {
System.err.println("ERROR :: FTP Server Unreachable");
sleep();
connect();
} catch (IOException e) {
System.err.println("ERROR :: FTP Server Unreachable");
sleep();
connect();
}
}
public void sleep(){
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}