中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用JDK的JavaMailAPI發送和接收電子郵件

發布時間:2024-06-09 18:22:09 來源:億速云 閱讀:95 作者:小樊 欄目:編程語言

在使用JavaMailAPI發送和接收電子郵件之前,需要確保你已經安裝了JDK,并且已經將JavaMailAPI庫包含在你的項目中。以下是一個基本的示例代碼,演示了如何使用JavaMailAPI發送和接收電子郵件:

  1. 發送電子郵件示例:
import java.util.Properties;
import javax.mail.*;
import javax.mail.internet.*;

public class SendEmail {

    public static void main(String[] args) {

        final String username = "your_email@gmail.com";
        final String password = "your_password";

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

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

        try {

            Message message = new MimeMessage(session);
            message.setFrom(new InternetAddress("your_email@gmail.com"));
            message.setRecipients(Message.RecipientType.TO,
                InternetAddress.parse("recipient_email@gmail.com"));
            message.setSubject("Testing JavaMailAPI");
            message.setText("Hello, this is a test email!");

            Transport.send(message);

            System.out.println("Email sent successfully!");

        } catch (MessagingException e) {
            throw new RuntimeException(e);
        }
    }
}
  1. 接收電子郵件示例:
import java.util.Properties;
import javax.mail.*;

public class ReceiveEmail {

    public static void main(String[] args) {

        final String username = "your_email@gmail.com";
        final String password = "your_password";

        Properties props = new Properties();
        props.setProperty("mail.store.protocol", "imaps");

        try {
            Session session = Session.getInstance(props, null);
            Store store = session.getStore();
            store.connect("imap.gmail.com", username, password);

            Folder inbox = store.getFolder("INBOX");
            inbox.open(Folder.READ_ONLY);

            Message[] messages = inbox.getMessages();

            for (Message message : messages) {
                System.out.println("From: " + message.getFrom()[0]);
                System.out.println("Subject: " + message.getSubject());
                System.out.println("Content: " + message.getContent());
            }

            inbox.close(false);
            store.close();

        } catch (MessagingException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}

請確保在示例代碼中替換your_email@gmail.comyour_password為你自己的郵箱地址和密碼。發送電子郵件示例使用Gmail作為郵件服務器,你也可以使用其他郵件服務器,只需要相應地更改mail.smtp.hostmail.smtp.port屬性。接收電子郵件示例使用IMAP協議,你可以根據需要更改為POP3協議。

以上示例代碼是一個簡單的示例,實際上發送和接收電子郵件可能需要更復雜的處理,比如處理附件、HTML內容等。你可以進一步研究JavaMailAPI的文檔和示例代碼,來了解更多高級功能。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

jdk
AI

合山市| 西充县| 扶沟县| 蒙阴县| 平顶山市| 临泉县| 利辛县| 玉门市| 九寨沟县| 福建省| 怀宁县| 横山县| 丰原市| 涿州市| 石狮市| 高州市| 资兴市| 宜黄县| 新邵县| 监利县| 顺昌县| 淄博市| 庐江县| 昌黎县| 易门县| 宜都市| 潞城市| 江达县| 龙南县| 改则县| 济阳县| 疏附县| 安陆市| 镇安县| 南京市| 贡觉县| 黑山县| 西盟| 诏安县| 阳春市| 万年县|