久久r热视频,国产午夜精品一区二区三区视频,亚洲精品自拍偷拍,欧美日韩精品二区

您的位置:首頁技術文章
文章詳情頁

JavaMail 發送郵件失敗

瀏覽:109日期:2023-12-14 16:29:59

問題描述

用java 實現一個 發送郵件的Demo(用的是QQ郵箱) 但發送總是失敗,QQ郵箱中的 Smtp 服務也都開啟了,密碼用的是獲取的授權碼

public static void main(String[] args) { // 收件人電子郵箱 String to = '123@qq.com'; // 發件人電子郵箱 String from = '456@qq.com'; // 指定發送郵件的主機為 smtp.qq.com String host = 'smtp.qq.com'; //QQ 郵件服務器 // 獲取系統屬性 Properties properties = System.getProperties(); // 設置郵件服務器 properties.setProperty('mail.smtp.host', host); properties.put('mail.smtp.auth', 'true'); properties.put('mail.smtp.port', '465'); properties.put('mail.smtp.socketFactory.port', '465'); properties.put('mail.smtp.socketFactory.class', 'javax.net.ssl.SSLSocketFactory'); properties.put('mail.smtp.starttls.enable', 'true'); properties.put('mail.smtp.socketFactory.fallback', 'false'); properties.put('mail.smtp.starttls.enable', 'true'); properties.put('mail.smtp.ssl.trust', 'smtp.qq.com'); // 獲取默認session對象 Session session = Session.getDefaultInstance(properties,new Authenticator(){ public PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication('456@qq.com', '123123'); //發件人郵件用戶名、密碼 } }); session.setDebug(true); try{ // 創建默認的 MimeMessage 對象 MimeMessage message = new MimeMessage(session); // Set From: 頭部頭字段 message.setFrom(new InternetAddress(from)); // Set To: 頭部頭字段 message.addRecipient(Message.RecipientType.TO, new InternetAddress(to)); // Set Subject: 頭部頭字段 message.setSubject('This is the Subject Line!'); // 設置消息體 message.setText('This is actual message'); // 發送消息 Transport.send(message); System.out.println('Sent message successfully....from w3cschool.cc'); }catch (MessagingException mex) { mex.printStackTrace(); } }

錯誤提示DEBUG SMTP: trying to connect to host 'smtp.qq.com', port 465, isSSL falsejavax.mail.MessagingException: Could not connect to SMTP host: smtp.qq.com, port: 465; nested exception is:

javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested targetat com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1972)at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:642)at javax.mail.Service.connect(Service.java:317)at javax.mail.Service.connect(Service.java:176)at javax.mail.Service.connect(Service.java:125)at javax.mail.Transport.send0(Transport.java:194)at javax.mail.Transport.send(Transport.java:124)at com.syx.email.MailTest3.main(MailTest3.java:68)

有沒有做過類似的大神指點一下 …^.^…

問題解答

回答1:

SSL數字證書問題,簡單點去掉數字證書驗證試試 properties.put('mail.smtp.ssl.trust', 'smtp.qq.com'); // 這行先注釋調

標簽: java
相關文章:
主站蜘蛛池模板: 台安县| 万盛区| 云安县| 理塘县| 绍兴市| 东兰县| 梁山县| 灵寿县| 剑川县| 华安县| 绥芬河市| 南华县| 东乡| 台南县| 边坝县| 建湖县| 新乡市| 台南市| 马鞍山市| 麻江县| 新绛县| 招远市| 抚远县| 孙吴县| 施秉县| 大方县| 巴中市| 太和县| 澄迈县| 静宁县| 石泉县| 宁城县| 湘阴县| 西林县| 资兴市| 东宁县| 兰坪| 德州市| 会昌县| 文安县| 富宁县|