Java Mail找不到类MimeMessage

问题描述 投票:1回答:2

这是Mail类的代码(内部有一个主要控件,但由于这样的简单原因,解决这个问题似乎很简单):

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Properties;

public class Mail {

    public static void main(String [] args) {
    // Recipient's email ID needs to be mentioned.
    String to = "[email protected]";

    // Sender's email ID needs to be mentioned
    String from = "mail";
    String psw = "password";

    // Assuming you are sending email from localhost
    String host = "localhost";

    // Get system properties
    Properties properties = System.getProperties();

    // Setup mail server
    properties.setProperty("mail.smtps.host", host);
    properties.setProperty("mail.user", from);
    properties.setProperty("mail.password", psw);

    // Get the default Session object.
    Session session = Session.getDefaultInstance(properties);

    try {
        // Create a default MimeMessage object.
        MimeMessage message = new MimeMessage(session);

        // Set From: header field of the header.
        message.setFrom(new InternetAddress(from));

        // Set To: header field of the header.
        message.addRecipient(Message.RecipientType.TO, new                        InternetAddress(to));

        // Set Subject: header field
        message.setSubject("This is the Subject Line!");

        // Now set the actual message
        message.setText("This is actual message");

        // Send message
        Transport.send(message);
        System.out.println("Sent message successfully....");
    } catch (MessagingException mex) {
        mex.printStackTrace();
    }
  }
}

这是我跑步后看到的终点站:

Exception in thread "main" java.lang.NoClassDefFoundError: javax/activation/DataSource
    at Mail.main(Mail.java:35)
Caused by: java.lang.ClassNotFoundException: javax.activation.DataSource
at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:582)
at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:190)
at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:499)
... 1 more

Process finished with exit code 1

错误出现在:

MimeMessage消息=新的MimeMessage(会话);

java session javamail mime-message
2个回答
2
投票

[您要么需要告诉JDK 9公开包含但隐藏的java.activation模块,要么需要在项目中明确包含JavaBeans Activation Framework(JAF; javax.activation)jar文件。

通过将--add-modules java.activation添加到java命令行来执行前者。

后者可以通过使用此Maven依赖项来完成:

<dependency>
  <groupId>com.sun.activation</groupId>
  <artifactId>javax.activation</artifactId>
  <version>1.2.0</version>
</dependency>

0
投票

尝试下面的代码

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import java.util.Properties;

public class MailTest {

    public static void main(String [] args) {
    // Recipient's email ID needs to be mentioned.
    String to = "tomail";

    // Sender's email ID needs to be mentioned
    String from = "frommail";
    String psw = "password";

    // different mail will have different host name, I have implemented using gmail
    String host = "smtp.gmail.com";
    String port = "587";

    Properties props = System.getProperties();
    props.put("mail.transport.protocol", "smtp");
    props.put("mail.smtp.host", host);
    props.put("mail.smtp.port", port);
   // props.put("mail.smtp.connectiontimeout", timeout);
    props.put("mail.smtp.auth", true);
    props.put("mail.smtp.starttls.enable", "true");
    props.put("mail.smtp.starttls.required", "true");

    // Get the default Session object.
    //Session session = Session.getDefaultInstance(props);

    Session session = Session.getInstance(props, new javax.mail.Authenticator()
    {
      protected PasswordAuthentication getPasswordAuthentication()
      {
        return new PasswordAuthentication(from, psw);
      }
    });

    try {
        // Create a default MimeMessage object.
        MimeMessage message = new MimeMessage(session);

        // Set From: header field of the header.
        message.setFrom(new InternetAddress(from));

        // Set To: header field of the header.
        message.addRecipient(Message.RecipientType.TO, new InternetAddress(to));

        // Set Subject: header field
        message.setSubject("This is the Subject Line!");

        // Now set the actual message
        message.setText("This is actual message");

        // Send message
        Transport.send(message);
        System.out.println("Sent message successfully....");
    } catch (MessagingException mex) {
        mex.printStackTrace();
    }
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.