談談在Java發送郵件中碰到的的成績。本站提示廣大學習愛好者:(談談在Java發送郵件中碰到的的成績)文章只能為提供參考,不一定能成為您想要的結果。以下是談談在Java發送郵件中碰到的的成績正文
媒介
發送郵件的代碼是我從之前的一個運用上直接拷貝過去的。之前應用的騰訊的郵件辦事,法式履行起來沒有任何成績。後來修正為微軟office365郵件辦事後,卻碰到了兩個成績。
成績一,tls加密設置
異常信息以下:
Exception in thread "main" com.sun.mail.smtp.SMTPSendFailedException: 530 5.7.57 SMTP; Client was not authenticated to send anonymous mail during MAIL FROM
這個處理起來比擬輕易。找了些材料,添加以下設置裝備擺設便可:
mail.smtp.starttls.enable = true
成績二,提醒協定為null:
異常信息以下:
Exception in thread "main" javax.mail.NoSuchProviderException: Invalid protocol: null at javax.mail.Session.getProvider(Session.java:449) at javax.mail.Session.getTransport(Session.java:667) at javax.mail.Session.getTransport(Session.java:648) at javax.mail.Session.getTransport(Session.java:634)
這個成績是在將運用安排到臨盆情況後才碰到的。經檢討後發明挪用的jar包不是我在maven中指定的版本。後來確認是運用應用的jar包和容器(就是jetty)應用的jar包抵觸了。容器應用的jar版本較舊,不外默許優先加載容器的jar。如許成績處理思緒有兩個:
依附容器的jar從新寫代碼;
更新容器的jar。
第二個選擇若干有些風險,就采取第一個選項好了,只須要修正一行便可:
Transport transport = session.getTransport("smtp");
這個成績在javax.mail 1.4版本中會湧現。以後較高的版本會默許采取SMTP協定發送郵件。
修正後的法式:
package com.zhyea.zytools; import java.util.Date; import java.util.Properties; import javax.mail.Message; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class MailSender { private static final String MAIL_SMTP_HOST = "smtp.exmail.qq.com"; private static final Integer MAIL_SMTP_PORT = 587; private static final Boolean MAIL_SMTP_AUTH = true; private static final String MAIL_SMTP_USER = "[email protected]"; private static final String MAIL_SMTP_PASSWORD = "robinzhyea"; private static Properties props = new Properties(); static { props.put("mail.smtp.host", MAIL_SMTP_HOST); props.put("mail.smtp.auth", MAIL_SMTP_AUTH); props.put("mail.smtp.user", MAIL_SMTP_USER); props.put("mail.smtp.password", MAIL_SMTP_PASSWORD); props.put("mail.smtp.starttls.enable", true); } /** * 發送郵件 */ public static void send(String to, String title, String content) { try { Session session = Session.getInstance(props);//創立郵件會話 MimeMessage message = new MimeMessage(session);//由郵件會話新建一個新聞對象 message.setFrom(new InternetAddress(MAIL_SMTP_PASSWORD));//設置發件人的地址 message.setRecipient(Message.RecipientType.TO, new InternetAddress(to));//設置收件人,並設置其吸收類型為TO //設相信件內容 //message.setText(mailContent); //發送 純文本 郵件 TODO message.setSubject(title);//設置題目 message.setContent(content, "text/html;charset=gbk"); //發送HTML郵件,內容款式比擬豐碩 message.setSentDate(new Date());//設置發信時光 message.saveChanges();//存儲郵件信息 //發送郵件 Transport transport = session.getTransport("smtp"); transport.connect(MAIL_SMTP_USER, MAIL_SMTP_PASSWORD); transport.sendMessage(message, message.getAllRecipients());//發送郵件,個中第二個參數是一切已設好的收件人地址 transport.close(); } catch (Exception e) { e.printStackTrace(); } } } package com.zhyea.zytools; import java.util.Date; import java.util.Properties; import javax.mail.Message; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; public class MailSender { private static final String MAIL_SMTP_HOST = "smtp.exmail.qq.com"; private static final Integer MAIL_SMTP_PORT = 587; private static final Boolean MAIL_SMTP_AUTH = true; private static final String MAIL_SMTP_USER = "[email protected]"; private static final String MAIL_SMTP_PASSWORD = "robinzhyea"; private static Properties props = new Properties(); static { props.put("mail.smtp.host", MAIL_SMTP_HOST); props.put("mail.smtp.auth", MAIL_SMTP_AUTH); props.put("mail.smtp.user", MAIL_SMTP_USER); props.put("mail.smtp.password", MAIL_SMTP_PASSWORD); props.put("mail.smtp.starttls.enable", true); } /** * 發送郵件 */ public static void send(String to, String title, String content) { try { Session session = Session.getInstance(props);//創立郵件會話 MimeMessage message = new MimeMessage(session);//由郵件會話新建一個新聞對象 message.setFrom(new InternetAddress(MAIL_SMTP_PASSWORD));//設置發件人的地址 message.setRecipient(Message.RecipientType.TO, new InternetAddress(to));//設置收件人,並設置其吸收類型為TO //設相信件內容 //message.setText(mailContent); //發送 純文本 郵件 TODO message.setSubject(title);//設置題目 message.setContent(content, "text/html;charset=gbk"); //發送HTML郵件,內容款式比擬豐碩 message.setSentDate(new Date());//設置發信時光 message.saveChanges();//存儲郵件信息 //發送郵件 Transport transport = session.getTransport("smtp"); transport.connect(MAIL_SMTP_USER, MAIL_SMTP_PASSWORD); transport.sendMessage(message, message.getAllRecipients());//發送郵件,個中第二個參數是一切已設好的收件人地址 transport.close(); } catch (Exception e) { e.printStackTrace(); } } }
以上就是本文的全體內容,願望本文的內容對年夜家的進修任務能有所贊助。