我所做的就是这个 -
SMTPClient smtpClient = new SMTPClient();
smtpClient.connect(host);
int reply = smtpClient.getReplyCode();
if (!SMTPReply.isPositiveCompletion(reply)) {
closeConnection(host);
return false;
}
if (!smtpClient.login(SMTP_LOGIN)) {
closeConnection(host);
return false;
}
这是连接通话中的超时。在这种特定情况下,主机是“gmail.com”。
我做错了吗?还需要其他东西才能使连接工作吗?