2

同じ問題に対して提供された投稿を行った後、次のコードを作成しました。しかし、次の例外が発生しています。

javax.mail.MessagingException:SMTP ホストに接続できませんでした: smtp.gmail.com、ポート: 587; ネストされた例外: java.net.ConnectException: 接続タイムアウト: 接続

public static void main(String[] args) {

    String to = "xxx@gmail.com" // valid gmail address.     
    String from = "yyy@gmail.com"; // valid gmail address

    String host = "smtp.gmail.com";
    String password = "****"; // password of the gmaill acc used in from

    int port = 587;


    Properties properties = System.getProperties();
    properties.put("mail.smtp.starttls.enable", "true");
    properties.setProperty("mail.smtp.host",host );
    properties.setProperty("mail.smtp.user", from);
    properties.setProperty("mail.smtp.password", password);
    properties.setProperty("mail.smtp.port", "587");
    properties.setProperty("mail.smtp.auth", "true");
    Session session = Session.getDefaultInstance(properties,null);

    try {

        MimeMessage message = new MimeMessage(session);

        message.setFrom(new InternetAddress(from));

        message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

        message.setSubject("Test Mail");

        message.setText("This is just a test mail generated");

       Transport transport = session.getTransport("smtp");
       transport.connect(host,from,password);
       InternetAddress[] addresses = new InternetAddress[1];
       addresses[0] = new InternetAddress(to);
       transport.sendMessage(message,addresses);


        System.out.println("Message Sent Successfully");
    }catch(MessagingException excp){
        System.out.println(excp);
    }

}

誰かが私がやっている間違いを言うことができますか. gmail smtp サーバーを使用するために必要な gmail アカウントの設定はありますか?

4

3 に答える 3

1

接続に問題があります。最初に "smtp.gmail.com" への接続を確認します。

コマンド プロンプトに移動し、次のように ping コマンドを実行します。

ping smtp.gmail.com

サーバーから応答がない場合は、ファイアウォールに問題がある可能性があります。

于 2011-12-23T05:54:09.290 に答える
1

次のコードを試してください。パッケージ (jar ファイル)をダウンロードする必要がありますjavax.mail。このコードを試したので、既にその jar ファイルを持っていると思います。したがって、その jar ファイルをダウンロードするためのリンクは提供しません。クラスパスを適切に設定し、必要なパッケージをインポートします。選択したファイアウォールとホスト ポートに注意してください。

import java.util.logging.Level;
import java.util.logging.Logger;
import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;

final class MailClient
{
    private class SMTPAuthenticator extends Authenticator
    {
        private PasswordAuthentication authentication;

        public SMTPAuthenticator(String login, String password)
        {
             authentication = new PasswordAuthentication(login, password);
        }

        @Override
        protected PasswordAuthentication getPasswordAuthentication()
        {
             return authentication;
        }
    }

    public void mail()
    {
        try
        {
            String from = "xyz.com";
            String to = "abc.com";
            String subject = "Your Subject.";
            String message = "Message Text.";
            String login = "xyz.com";
            String password = "password";

            Properties props = new Properties();
            props.setProperty("mail.host", "smtp.gmail.com");
            props.setProperty("mail.smtp.port", "587");
            props.setProperty("mail.smtp.auth", "true");
            props.setProperty("mail.smtp.starttls.enable", "true");

            Authenticator auth = new SMTPAuthenticator(login, password);

            Session session = Session.getInstance(props, auth);

            MimeMessage msg = new MimeMessage(session);

           try
           {
                msg.setText(message);
                msg.setSubject(subject);
                msg.setFrom(new InternetAddress(from));
                msg.addRecipient(Message.RecipientType.TO,
                new InternetAddress(to));
                Transport.send(msg);
           }
           catch (MessagingException ex)
           {
                Logger.getLogger(MailClient.class.getName()).
                log(Level.SEVERE, null, ex);
           }
        }
    }
}

final public class Main
{
    public static void main(String...args)
    {
        new MailClient().mail();
    }
}
于 2011-12-23T06:52:01.413 に答える
0

接続タイムアウトは、接続すらしていないことを示します。つまり、Gmailアカウントにアクセスすることさえできなかったため、そこに何かを設定しても効果はありません。

そのホスト/ポートへの単純なtelnetを試して、接続できるかどうかを確認することをお勧めします。それができない場合は、接続場所が間違っているか、ファイアウォールの問題が発生している可能性があります。

于 2011-12-23T05:15:36.373 に答える