0

メール送信者を作成するのに役立つチュートリアルを見つけました。最初の試行では問題なく動作しますが、netbeans を閉じて再度試行すると、エラーが発生し、理解できず、netbeans が次のことを通知します:connot find symbol , symbol 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);

どうもありがとう

4

2 に答える 2

1

あなたが示した行にコンパイルの問題はないようです。ただし、ここにはタイプミスがあります。

multipart.addodyPart(attachPart);

それは読むべきです

multipart.addBodyPart(attachPart);

また、MimeBodyPart.#attachFileは JavaMail 1.4 でのみ追加されました。古いバージョンを使用している場合は、必ずこのバージョンを入手してください。

于 2013-03-03T20:30:17.037 に答える
0

ステートメントを囲む try catch ブロックを削除し、もう一度コンパイルしてみてください。例外が説明しているように、呼び出したメソッドはその例外をスローせず、発生しない非実行時例外をキャッチしようとするとコンパイル エラーが発生します。

編集:または、タイプミスの可能性があります。

于 2013-03-03T20:29:15.667 に答える