gpt4 book ai didi

JavaMail 找不到符号,无法编译源

转载 作者:行者123 更新时间:2023-12-01 14:48:06 31 4
gpt4 key购买 nike

我发现一个教程帮助我创建一个邮件发送器,第一次尝试工作正常,但是当我关闭netbeans并再次尝试时,oups,出现一个错误,我无法弄清楚并且netbeans通知那:找不到符号,符号attachFileString,

这是我的电子邮件代码

import java.io.IOException;
import java.util.Date;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;

public class Emailer {

public static void sendEmailWithAttachments(String host, String port,
final String userName, final String password, String toAddress,
String subject, String message, String[] attachFiles)
throws AddressException, MessagingException {
// sets SMTP server properties
Properties properties = new Properties();
properties.put("mail.smtp.host", host);
properties.put("mail.smtp.port", port);
properties.put("mail.smtp.auth", "true");
properties.put("mail.smtp.starttls.enable", "true");
properties.put("mail.user", userName);
properties.put("mail.password", password);

// creates a new session with an authenticator
Authenticator auth = new Authenticator() {
public PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(userName, password);
}
};
Session session = Session.getInstance(properties, auth);

// creates a new e-mail message
Message msg = new MimeMessage(session);

msg.setFrom(new InternetAddress(userName));
InternetAddress[] toAddresses = { new InternetAddress(toAddress) };
msg.setRecipients(Message.RecipientType.TO, toAddresses);
msg.setSubject(subject);
msg.setSentDate(new Date());

// creates message part
MimeBodyPart messageBodyPart = new MimeBodyPart();
messageBodyPart.setContent(message, "text/html");

// creates multi-part
Multipart multipart = new MimeMultipart();
multipart.addBodyPart(messageBodyPart);

// adds attachments
if (attachFiles != null && attachFiles.length > 0) {
for (String filePath : attachFiles) {
MimeBodyPart attachPart = new MimeBodyPart();

try {
attachPart.attachFile(filePath);
} catch (IOException ex) {
ex.printStackTrace();
}

multipart.addodyPart(attachPart);
}
}

// sets the multi-part as e-mail's content
msg.setContent(multipart);

// sends the e-mail
Transport.send(msg);

}

}

错误是

java.lang.RuntimeException: Uncompilable source code - exception java.io.IOException is never thrown in body of corresponding try statement
at Emailer.sendEmailWithAttachments(Emailer.java:63)

第 63 行 (Emailer.java:63) 是:

attachPart.attachFile(filePath);

非常感谢

最佳答案

您指出的行似乎不存在任何编译问题。不过这里有一个错字:

multipart.addodyPart(attachPart);

应该是这样的

multipart.addBodyPart(attachPart);

此外,MimeBodyPart.#attachFile仅在 JavaMail 1.4 中添加。如果您使用的是旧版本,请确保获取版本。

关于JavaMail 找不到符号,无法编译源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15190425/

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