您好,登錄后才能下訂單哦!
java使用mail發(fā)送郵件時(shí)出現(xiàn)亂碼如何解決?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。
1、在發(fā)送正文時(shí)指定正文編碼:
在發(fā)送郵件時(shí)使用
MimeBodyPart body = new MimeBodyPart(); body.setContent(content, "text/html;charset=GB2312");
注意此時(shí)的content編碼必須是所指定的編碼格式。
2、在設(shè)置郵件標(biāo)題時(shí)也要指定標(biāo)題的編碼:
MimeMultipart mmp=new MimeMultipart(); mmp.setSubject(subject, "GB2312");
同上也要求subject的編碼和指定的編碼一致。
3、發(fā)送正文時(shí)也可以在header中指定傳輸編碼:
body.setHeader("Content-Transfer-Encoding", "base64"); // 指定使用base64編碼
4、示例如下:
import java.util.Properties; import javax.mail.*; import javax.mail.internet.*; public class MailSender { public static void main(String[] args) { try { String host = "staff.tixa.com"; // smtp主機(jī) String username = "sample@staff.tixa.com"; // 認(rèn)證用戶名 String password = "sample"; // 認(rèn)證密碼 String from = "例子<sample@staff.tixa.com>"; // 發(fā)送者 String to = "toOne@staff.tixa.com, toAnother@staff.tixa.com"; // 接受者,用“,”分隔 String subject = "測(cè)試?yán)?quot;; String content = "僅僅是個(gè)供測(cè)試的例子。"; // 建立session Properties prop = new Properties(); prop.put("mail.smtp.host", host); prop.put("mail.smtp.auth", "true"); //是否需要認(rèn)證 Session session = Session.getDefaultInstance(prop, null); // 創(chuàng)建MIME郵件對(duì)象 MimeMessage mimeMsg = new MimeMessage(session); MimeMultipart mp = new MimeMultipart(); // 設(shè)置信息 mimeMsg.setFrom(new InternetAddress(from)); mimeMsg.setSubject(subject, "GB2312"); // !?。∽⒁庠O(shè)置編碼 mimeMsg.setRecipients( Message.RecipientType.TO, InternetAddress.parse(to)); // 設(shè)置正文 BodyPart body = new MimeBodyPart(); body.setContent(content, "text/plain;charset=GB2312"); // ?。?!注意設(shè)置編碼 mp.addBodyPart(body); mimeMsg.setContent(mp); // 發(fā)送郵件 Transport transport = session.getTransport("smtp"); transport.connect(host, username, password); transport.sendMessage(mimeMsg,mimeMsg.getRecipients(Message.RecipientType.TO)); transport.close(); } catch(Exception exp) { exp.printStackTrace(); } }
看完上述內(nèi)容,你們掌握java使用mail發(fā)送郵件時(shí)出現(xiàn)亂碼的解決方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。