一、導(dǎo)入依賴
10年積累的成都網(wǎng)站設(shè)計、成都做網(wǎng)站經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認(rèn)識你,你也不認(rèn)識我。但先做網(wǎng)站設(shè)計后付款的網(wǎng)站建設(shè)流程,更有郾城免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。javax.mail mail 1.4.7
二、發(fā)送普通文本
public static void testSendTextMail() throws Exception {// 1、創(chuàng)建Session Properties props,Authenticator auth
Properties props = new Properties();
props.setProperty("mail.host", "smtp.qq.com");// 發(fā)送的服務(wù)器主機地址
props.setProperty("mail.smtp.auth", "true");// 通過服務(wù)器的認(rèn)證
Authenticator auth = new Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { // 封裝了發(fā)件人的用戶名和密碼(如果是qq有個授權(quán)碼,不是寫qq密碼)
return new PasswordAuthentication("xx用戶名", "xx密碼");
}
};
Session session = Session.getInstance(props, auth);
// 2、創(chuàng)建MimeMessage
MimeMessage msg = new MimeMessage(session);
// 設(shè)置發(fā)件人
msg.setFrom(new InternetAddress("xx@qq.com"));
// 垃圾郵件解決問題:抄送人添加自己
// 設(shè)置收件人
// TO收件人 CC抄送人 BCC密送
msg.setRecipient(RecipientType.TO, new InternetAddress("xx@qq.com"));
// 設(shè)置郵件的標(biāo)題
msg.setSubject("測試郵件的標(biāo)題");
// 設(shè)置郵件的內(nèi)容
msg.setContent("測試郵件的內(nèi)容", "text/html;charset=utf-8");
// 3、發(fā)送 TrancePort
Transport.send(msg);
}
三、發(fā)送附件
public static void testSendFileMail() throws Exception {// 1、創(chuàng)建Session Properties props,Authenticator auth
Properties props = new Properties();
props.setProperty("mail.host", "smtp.qq.com");// 發(fā)送的服務(wù)器主機地址
props.setProperty("mail.smtp.auth", "true");// 通過服務(wù)器的認(rèn)證
Authenticator auth = new Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { // 封裝了發(fā)件人的用戶名和密碼
return new PasswordAuthentication("xx", "xx");
}
};
Session session = Session.getInstance(props, auth);
// 2、創(chuàng)建MimeMessage
MimeMessage msg = new MimeMessage(session);
// 設(shè)置發(fā)件人
msg.setFrom(new InternetAddress("xx@qq.com"));
// 垃圾郵件解決問題:抄送人添加自己
// 設(shè)置收件人
// TO收件人 CC抄送人 BCC密送
msg.setRecipient(RecipientType.TO, new InternetAddress("xx@qq.com"));
// 設(shè)置郵件的標(biāo)題
msg.setSubject("測試郵件的標(biāo)題");
// 部件對象
MimeMultipart multipart = new MimeMultipart();
// 可以是普通文本內(nèi)容也可以是附件
MimeBodyPart part = new MimeBodyPart();
part.setContent("測試測試","text/html;charset=utf-8");
MimeBodyPart part2 = new MimeBodyPart();
part2.attachFile("D:\\Study\\Back-end\\EasyTest.xlsx");
part2.setFileName(MimeUtility.encodeText("附件的名字xx.xlsx"));//中文會出問題
multipart.addBodyPart(part);
multipart.addBodyPart(part2);
// 設(shè)置郵件的內(nèi)容為附件
msg.setContent(multipart);
// 3、發(fā)送 TrancePort
Transport.send(msg);
}
發(fā)送郵件commons-email一、導(dǎo)入依賴
org.apache.commons commons-email 1.4
二、發(fā)送普通文本
public static void testSendCommonTextMail() throws Exception {SimpleEmail email = new SimpleEmail();//發(fā)送普通郵件
// email.setTLS(true);//設(shè)置認(rèn)證
email.setHostName("smtp.qq.com");//發(fā)送方的郵件服務(wù)器
email.setAuthentication("xx", "xx");//設(shè)置登錄的賬號密碼
// email.setFrom("xx@qq.com");
email.setFrom("xx@qq.com", "一個名字xx", "utf-8");//設(shè)置發(fā)送方,給發(fā)送方指定名字
email.addTo("xx@qq.com");//設(shè)置接收方
email.setSubject("郵件主題xxx");//設(shè)置郵件主題
email.setContent("郵件內(nèi)容xx","text/html;charset=utf-8");//設(shè)置郵件內(nèi)容
email.send();
}
三、發(fā)送附件
public static void testSendCommonFileMail() throws Exception {// TODO Auto-generated method stub
MultiPartEmail email = new MultiPartEmail();
// email.setTLS(true);//設(shè)置認(rèn)證
email.setHostName("smtp.qq.com");//發(fā)送方的郵件服務(wù)器
email.setAuthentication("xx", "xx");//設(shè)置登錄的賬號密碼
// email.setFrom("xx@qq.com");
email.setFrom("xx@qq.com", "一個名字xx", "utf-8");//設(shè)置發(fā)送方,給發(fā)送方指定名字
email.addTo("xx@qq.com");//設(shè)置接收方
email.setSubject("帶附件主題");//設(shè)置郵件主題
email.setCharset("utf-8");
email.setMsg("帶附件的內(nèi)容內(nèi)容xx"); // 發(fā)附件的時候不能用setContent方法,否則不顯示附件
EmailAttachment attachment = new EmailAttachment();
attachment.setPath("D:\\Study\\Back-end\\EasyTest.xlsx");
attachment.setName(MimeUtility.encodeText("附件名字.xlsx"));
// 把附件添加到email對象上
email.attach(attachment);
email.send();
}
通過POI將數(shù)據(jù)導(dǎo)出成excel模板并當(dāng)成附件進(jìn)行郵件發(fā)送方法一:通過POI讀取數(shù)據(jù)庫的數(shù)據(jù),并生成excel,但不保存在本地文件,通過流的方式,作為附件并發(fā)送郵件
主要的代碼如下:
//1、將導(dǎo)出的數(shù)據(jù)變成流
ByteArrayOutputStream os = new ByteArrayOutputStream();
workbook.write(os);
workbook.close();
ByteArrayInputStream iss = new ByteArrayInputStream(os.toByteArray());
os.close();
//2、將流變成要發(fā)送的文件
DataSource files = new ByteArrayDataSource(iss, "application/vnd.ms-excel;charset=UTF-8");
//3、設(shè)置文件為附件
part.setDataHandler(new DataHandler(files));
全部代碼如下:
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.util.Properties;
import javax.activation.DataHandler;
import javax.activation.DataSource;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeBodyPart;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMessage.RecipientType;
import javax.mail.internet.MimeMultipart;
import javax.mail.internet.MimeUtility;
import javax.mail.util.ByteArrayDataSource;
import org.apache.commons.mail.EmailAttachment;
import org.apache.commons.mail.MultiPartEmail;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.joda.time.DateTime;
public class TestPOISendMail {public static void testPOIAndSendMail() throws Exception {// 1、創(chuàng)建一個工作簿 07
Workbook workbook = new XSSFWorkbook();
// 2、創(chuàng)建一個工作表
Sheet sheet = workbook.createSheet("xxms觀眾統(tǒng)計表");
// 3、創(chuàng)建一個行
Row row1 = sheet.createRow(0);
// 4、創(chuàng)建一個單元格 (1,1)
Cell cell11 = row1.createCell(0);
cell11.setCellValue("今日新增觀眾");
// (1,2)
Cell cell12 = row1.createCell(1);
cell12.setCellValue(666);
// 第二行
Row row2 = sheet.createRow(1);
// (2,1)
Cell cell21 = row2.createCell(0);
cell21.setCellValue("統(tǒng)計時間");
// (2,2)
Cell cell22 = row2.createCell(1);
String time = new DateTime().toString("yyyy-MM-dd HH:mm:ss");
cell22.setCellValue(time);
ByteArrayOutputStream os = new ByteArrayOutputStream();
workbook.write(os);
workbook.close();
// 重置流
// os.reset();
ByteArrayInputStream iss = new ByteArrayInputStream(os.toByteArray());
os.close();
testSendFileMail(iss);
}
public static void testSendFileMail(ByteArrayInputStream iss) throws Exception { // 1、創(chuàng)建Session Properties props,Authenticator auth
Properties props = new Properties();
props.setProperty("mail.host", "smtp.qq.com");// 發(fā)送的服務(wù)器主機地址
props.setProperty("mail.smtp.auth", "true");// 通過服務(wù)器的認(rèn)證
Authenticator auth = new Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { // 封裝了發(fā)件人的用戶名和密碼
return new PasswordAuthentication("xx", "xx");
}
};
Session session = Session.getInstance(props, auth);
session.setDebug(true);
// 2、創(chuàng)建MimeMessage
MimeMessage msg = new MimeMessage(session);
// 設(shè)置發(fā)件人
msg.setFrom(new InternetAddress("xx@qq.com"));
// 垃圾郵件解決問題:抄送人添加自己
// 設(shè)置收件人
// TO收件人 CC抄送人 BCC密送
msg.setRecipient(RecipientType.TO, new InternetAddress("xx@qq.com"));
// 設(shè)置郵件的標(biāo)題
msg.setSubject("x月份數(shù)據(jù)");
// 部件對象
MimeMultipart multipart = new MimeMultipart();
// 可以是普通文本內(nèi)容也可以是附件
MimeBodyPart part = new MimeBodyPart();
DataSource files = new ByteArrayDataSource(iss, "application/vnd.ms-excel;charset=UTF-8");
part.setDataHandler(new DataHandler(files));
part.setFileName(MimeUtility.encodeText("x月份數(shù)據(jù)1.xlsx"));
MimeBodyPart part2 = new MimeBodyPart();
part2.setDataHandler(new DataHandler(files));
part2.setFileName(MimeUtility.encodeText("x月份數(shù)據(jù)2.xlsx"));
MimeBodyPart part3 = new MimeBodyPart();
part3.setContent("請查收","text/html;charset=utf-8");
multipart.addBodyPart(part);
multipart.addBodyPart(part2);
multipart.addBodyPart(part3);
// 設(shè)置郵件的內(nèi)容為附件
msg.setContent(multipart);
// 3、發(fā)送 TrancePort
Transport.send(msg);
}
public static void main(String[] args) throws Exception {testPOIAndSendMail();
}
}
方法二:將導(dǎo)出的數(shù)據(jù)生成文件,將該文件發(fā)送出去后,再刪除該文件
主要代碼如下:
String filePath = "D:\\Work-IT\\data.xlsx";
try (FileOutputStream fos = new FileOutputStream(new File(filePath))) {workbook.write(fos);
} catch (Exception e) {logger.error("Excel文件生成異?!?, e);
}
// ..正常發(fā)送該文件
File file = new File(filePath);
if (file.exists()) {file.delete();
}
你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧
文章標(biāo)題:JAVA之發(fā)送郵件-創(chuàng)新互聯(lián)
轉(zhuǎn)載來于:http://muchs.cn/article38/dgdhsp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供面包屑導(dǎo)航、微信公眾號、網(wǎng)站收錄、網(wǎng)站營銷、域名注冊、網(wǎng)站導(dǎo)航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容