- 浏览: 442395 次
- 性别:
- 来自: 苏州
文章分类
- 全部博客 (355)
- Java (180)
- Jquery (18)
- Js (27)
- Mysql (3)
- Windows (6)
- C++ (1)
- Css (9)
- English (35)
- Sqlserver (1)
- Database (3)
- Git (1)
- Linux (5)
- Solr (1)
- Fun (5)
- C (2)
- Test (1)
- Math (2)
- Nlp (8)
- Algorithm (7)
- Regex (9)
- Other (5)
- Html (8)
- ASP (4)
- Access (2)
- Servlet (1)
- Lucene (3)
- Uml (2)
- Struts (19)
- Hibernate (5)
- Jstl (1)
- El (1)
- Python (1)
- SSH (2)
- Spring (1)
- Tomcat (4)
- Jsp (2)
- SE (1)
- Android (2)
- Excel (1)
- Ehcache (1)
- Flash (1)
- Pattern (1)
- Hadoop (1)
最新评论
-
huguyue1988:
怎么样可以判断访问的音乐加载完成了呢?我的界面要加载多个这个的 ...
jPlayer的一些用法 -
永不悔你:
[color=yellow][/c[*][img][/img] ...
MyEclipse 9.0运行速度优化 -
tianyalinfeng:
这个教程里都有吧
jquery 筛选器 -
mengfei86:
你太牛了,我找了半天的问题,你一句代码搞定了,谢了,id^, ...
jquery 筛选器
mail-1.4.4.jar
package mail;
import java.util.Date;
import java.util.Properties;
import javax.mail.Address;
import javax.mail.BodyPart;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
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.MimeMultipart;
/**
* 简单邮件(不带附件的邮件)发送器
*/
public class MailSender {
/**
* 以文本格式发送邮件
*
* @param mailInfo
* 待发送的邮件的信息
*/
public boolean sendTextMail(MailInfo mailInfo) {
// 判断是否需要身份认证
MailAuthenticator authenticator = null;
Properties pro = mailInfo.getProperties();
if (mailInfo.isValidate()) {
// 如果需要身份认证,则创建一个密码验证器
authenticator = new MailAuthenticator(mailInfo.getUserName(),
mailInfo.getPassword());
}
// 根据邮件会话属性和密码验证器构造一个发送邮件的session
Session sendMailSession = Session
.getDefaultInstance(pro, authenticator);
try {
// 根据session创建一个邮件消息
Message mailMessage = new MimeMessage(sendMailSession);
// 创建邮件发送者地址
Address from = new InternetAddress(mailInfo.getFromAddress());
// 设置邮件消息的发送者
mailMessage.setFrom(from);
// 创建邮件的接收者地址,并设置到邮件消息中
Address to = new InternetAddress(mailInfo.getToAddress());
mailMessage.setRecipient(Message.RecipientType.TO, to);
// 设置邮件消息的主题
mailMessage.setSubject(mailInfo.getSubject());
// 设置邮件消息发送的时间
mailMessage.setSentDate(new Date());
// 设置邮件消息的主要内容
String mailContent = mailInfo.getContent();
mailMessage.setText(mailContent);
// 发送邮件
Transport.send(mailMessage);
return true;
} catch (MessagingException ex) {
ex.printStackTrace();
}
return false;
}
/**
* 以HTML格式发送邮件
*
* @param mailInfo
* 待发送的邮件信息
*/
public boolean sendHtmlMail(MailInfo mailInfo) {
// 判断是否需要身份认证
MailAuthenticator authenticator = null;
Properties pro = mailInfo.getProperties();
// 如果需要身份认证,则创建一个密码验证器
if (mailInfo.isValidate()) {
authenticator = new MailAuthenticator(mailInfo.getUserName(),
mailInfo.getPassword());
}
// 根据邮件会话属性和密码验证器构造一个发送邮件的session
Session sendMailSession = Session
.getDefaultInstance(pro, authenticator);
try {
// 根据session创建一个邮件消息
Message mailMessage = new MimeMessage(sendMailSession);
// 创建邮件发送者地址
Address from = new InternetAddress(mailInfo.getFromAddress());
// 设置邮件消息的发送者
mailMessage.setFrom(from);
// 创建邮件的接收者地址,并设置到邮件消息中
Address to = new InternetAddress(mailInfo.getToAddress());
// Message.RecipientType.TO属性表示接收者的类型为TO
mailMessage.setRecipient(Message.RecipientType.TO, to);
// 设置邮件消息的主题
mailMessage.setSubject(mailInfo.getSubject());
// 设置邮件消息发送的时间
mailMessage.setSentDate(new Date());
// MiniMultipart类是一个容器类,包含MimeBodyPart类型的对象
Multipart mainPart = new MimeMultipart();
// 创建一个包含HTML内容的MimeBodyPart
BodyPart html = new MimeBodyPart();
// 设置HTML内容
html.setContent(mailInfo.getContent(), "text/html; charset=utf-8");
mainPart.addBodyPart(html);
// 将MiniMultipart对象设置为邮件内容
mailMessage.setContent(mainPart);
// 发送邮件
Transport.send(mailMessage);
return true;
} catch (MessagingException ex) {
ex.printStackTrace();
}
return false;
}
public static void main(String[] args) {
// 这个类主要是设置邮件
MailInfo mailInfo = new MailInfo();
mailInfo.setMailServerHost("smtp.qq.com");
mailInfo.setMailServerPort("25");
mailInfo.setValidate(true);
mailInfo.setUserName("123456@qq.com");
mailInfo.setPassword("123456");// 您的邮箱密码
mailInfo.setFromAddress("123456@qq.com");
mailInfo.setToAddress("123456@qq.com");
mailInfo.setSubject("测试邮件");
mailInfo.setContent("测试邮件的内容");
// 这个类主要来发送邮件
MailSender sms = new MailSender();
sms.sendTextMail(mailInfo);// 发送文体格式
// sms.sendHtmlMail(mailInfo);// 发送html格式
}
}
package mail;
import javax.mail.Authenticator;
import javax.mail.PasswordAuthentication;
public class MailAuthenticator extends Authenticator {
String userName = null;
String password = null;
public MailAuthenticator() {
}
public MailAuthenticator(String username, String password) {
this.userName = username;
this.password = password;
}
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(userName, password);
}
}
package mail;
/**
* 发送邮件需要使用的基本信息
*/
import java.util.Properties;
public class MailInfo {
// 发送邮件的服务器的IP和端口
private String mailServerHost;
private String mailServerPort = "25";
// 邮件发送者的地址
private String fromAddress;
// 邮件接收者的地址
private String toAddress;
// 登陆邮件发送服务器的用户名和密码
private String userName;
private String password;
// 是否需要身份验证
private boolean validate = false;
// 邮件主题
private String subject;
// 邮件的文本内容
private String content;
// 邮件附件的文件名
private String[] attachFileNames;
/**
* 获得邮件会话属性
*/
public Properties getProperties() {
Properties p = new Properties();
p.put("mail.smtp.host", this.mailServerHost);
p.put("mail.smtp.port", this.mailServerPort);
p.put("mail.smtp.auth", validate ? "true" : "false");
return p;
}
public String getMailServerHost() {
return mailServerHost;
}
public void setMailServerHost(String mailServerHost) {
this.mailServerHost = mailServerHost;
}
public String getMailServerPort() {
return mailServerPort;
}
public void setMailServerPort(String mailServerPort) {
this.mailServerPort = mailServerPort;
}
public boolean isValidate() {
return validate;
}
public void setValidate(boolean validate) {
this.validate = validate;
}
public String[] getAttachFileNames() {
return attachFileNames;
}
public void setAttachFileNames(String[] fileNames) {
this.attachFileNames = fileNames;
}
public String getFromAddress() {
return fromAddress;
}
public void setFromAddress(String fromAddress) {
this.fromAddress = fromAddress;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getToAddress() {
return toAddress;
}
public void setToAddress(String toAddress) {
this.toAddress = toAddress;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getSubject() {
return subject;
}
public void setSubject(String subject) {
this.subject = subject;
}
public String getContent() {
return content;
}
public void setContent(String textContent) {
this.content = textContent;
}
}
package mail;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStreamWriter;
import java.io.UnsupportedEncodingException;
import java.net.URLEncoder;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Properties;
import javax.mail.BodyPart;
import javax.mail.Flags;
import javax.mail.Folder;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.Part;
import javax.mail.Session;
import javax.mail.Store;
import javax.mail.URLName;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeUtility;
public class MailReciver {
private MimeMessage msg = null;
private String saveAttachPath = "";
private StringBuffer bodytext = new StringBuffer();
private String dateformate = "yy-MM-dd HH:mm";
public MailReciver(MimeMessage msg) {
this.msg = msg;
}
public void setMsg(MimeMessage msg) {
this.msg = msg;
}
/** * 获取发送邮件者信息 * @return * @throws MessagingException */
public String getFrom() throws MessagingException {
InternetAddress[] address = (InternetAddress[]) msg.getFrom();
String from = address[0].getAddress();
if (from == null) {
from = "";
}
String personal = address[0].getPersonal();
if (personal == null) {
personal = "";
}
String fromaddr = personal + "<" + from + ">";
return fromaddr;
}
/**
* * 获取邮件收件人,抄送,密送的地址和信息。根据所传递的参数不同 "to"-->收件人,"cc"-->抄送人地址,"bcc"-->密送地址 * @param
* type * @return * @throws MessagingException * @throws
* UnsupportedEncodingException
*/
public String getMailAddress(String type) throws MessagingException,
UnsupportedEncodingException {
String mailaddr = "";
String addrType = type.toUpperCase();
InternetAddress[] address = null;
if (addrType.equals("TO") || addrType.equals("CC")
|| addrType.equals("BCC")) {
if (addrType.equals("TO")) {
address = (InternetAddress[]) msg
.getRecipients(Message.RecipientType.TO);
}
if (addrType.equals("CC")) {
address = (InternetAddress[]) msg
.getRecipients(Message.RecipientType.CC);
}
if (addrType.equals("BCC")) {
address = (InternetAddress[]) msg
.getRecipients(Message.RecipientType.BCC);
}
if (address != null) {
for (int i = 0; i < address.length; i++) {
String mail = address[i].getAddress();
if (mail == null) {
mail = "";
} else {
mail = MimeUtility.decodeText(mail);
}
String personal = address[i].getPersonal();
if (personal == null) {
personal = "";
} else {
personal = MimeUtility.decodeText(personal);
}
String compositeto = personal + "<" + mail + ">";
mailaddr += "," + compositeto;
}
mailaddr = mailaddr.substring(1);
}
} else {
throw new RuntimeException("Error email Type!");
}
return mailaddr;
}
/**
* * 获取邮件主题 * @return * @throws UnsupportedEncodingException * @throws
* MessagingException
*/
public String getSubject() throws UnsupportedEncodingException,
MessagingException {
String subject = "";
subject = MimeUtility.decodeText(msg.getSubject());
if (subject == null) {
subject = "";
}
return subject;
}
/** * 获取邮件发送日期 * @return * @throws MessagingException */
public String getSendDate() throws MessagingException {
Date sendDate = msg.getSentDate();
SimpleDateFormat smd = new SimpleDateFormat(dateformate);
return smd.format(sendDate);
}
/** * 获取邮件正文内容 * @return */
public String getBodyText() {
return bodytext.toString();
}
/**
* * 解析邮件,将得到的邮件内容保存到一个stringBuffer对象中,解析邮件 主要根据MimeType的不同执行不同的操作,一步一步的解析 * @param
* part * @throws MessagingException * @throws IOException
*/
public void getMailContent(Part part) throws MessagingException,
IOException {
String contentType = part.getContentType();
int nameindex = contentType.indexOf("name");
boolean conname = false;
if (nameindex != -1) {
conname = true;
}
System.out.println("CONTENTTYPE:" + contentType);
if (part.isMimeType("text/plain") && !conname) {
bodytext.append((String) part.getContent());
} else if (part.isMimeType("text/html") && !conname) {
bodytext.append((String) part.getContent());
} else if (part.isMimeType("multipart/*")) {
Multipart multipart = (Multipart) part.getContent();
int count = multipart.getCount();
for (int i = 0; i < count; i++) {
getMailContent(multipart.getBodyPart(i));
}
} else if (part.isMimeType("message/rfc822")) {
getMailContent((Part) part.getContent());
}
}
/**
* * 判断邮件是否需要回执,如需回执返回true,否则返回false * @return
*
* @throws MessagingException
*/
public boolean getReplySign() throws MessagingException {
boolean replySign = false;
String needreply[] = msg.getHeader("Disposition-Notification-TO");
if (needreply != null) {
replySign = true;
}
return replySign;
}
/** * 获取此邮件的message-id * @return * @throws MessagingException */
public String getMessageId() throws MessagingException {
return msg.getMessageID();
}
/** * 判断此邮件是否已读,如果未读则返回true,已读返回false * @return * @throws MessagingException */
public boolean isNew() throws MessagingException {
boolean isnew = true;
Flags flags = ((Message) msg).getFlags();
Flags.Flag[] flag = flags.getSystemFlags();
System.out.println("flags's length:" + flag.length);
for (int i = 0; i < flag.length; i++) {
if (flag[i] == Flags.Flag.SEEN) {
isnew = false;
System.out.println("seen message .......");
break;
}
}
return isnew;
}
/**
* 由于pop协议中无法用isNew方法来判断是否已读,所以用如下方式实现
*
* @return
* @throws MessagingException
*/
public boolean isSeen() {
File file = null;
try {
String id = getMessageId();
String filePath = "c:/temp/" + URLEncoder.encode(id, "UTF-8")
+ ".txt";
file = new File(filePath);
} catch (Exception e) {
}
return existFile(file);
}
/**
* * 判断是是否包含附件 * @param part * @return * @throws MessagingException * @throws
* IOException
*/
public boolean isContainAttch(Part part) throws MessagingException,
IOException {
boolean flag = false;
if (part.isMimeType("multipart/*")) {
Multipart multipart = (Multipart) part.getContent();
int count = multipart.getCount();
for (int i = 0; i < count; i++) {
BodyPart bodypart = multipart.getBodyPart(i);
String dispostion = bodypart.getDisposition();
if ((dispostion != null)
&& (dispostion.equals(Part.ATTACHMENT) || dispostion
.equals(Part.INLINE))) {
flag = true;
} else if (bodypart.isMimeType("multipart/*")) {
flag = isContainAttch(bodypart);
} else {
String conType = bodypart.getContentType();
if (conType.toLowerCase().indexOf("appliaction") != -1) {
flag = true;
}
if (conType.toLowerCase().indexOf("name") != -1) {
flag = true;
}
}
}
} else if (part.isMimeType("message/rfc822")) {
flag = isContainAttch((Part) part.getContent());
}
return flag;
}
/** * 保存附件 * @param part * @throws MessagingException * @throws IOException */
public void saveAttachMent(Part part) throws MessagingException,
IOException {
String filename = "";
if (part.isMimeType("multipart/*")) {
Multipart mp = (Multipart) part.getContent();
for (int i = 0; i < mp.getCount(); i++) {
BodyPart mpart = mp.getBodyPart(i);
String dispostion = mpart.getDisposition();
if ((dispostion != null)
&& (dispostion.equals(Part.ATTACHMENT) || dispostion
.equals(Part.INLINE))) {
filename = mpart.getFileName();
if (filename.toLowerCase().indexOf("gb2312") != -1) {
filename = MimeUtility.decodeText(filename);
}
saveFile(filename, mpart.getInputStream());
} else if (mpart.isMimeType("multipart/*")) {
saveAttachMent(mpart);
} else {
filename = mpart.getFileName();
if (filename != null
&& (filename.toLowerCase().indexOf("gb2312") != -1)) {
filename = MimeUtility.decodeText(filename);
}
saveFile(filename, mpart.getInputStream());
}
}
} else if (part.isMimeType("message/rfc822")) {
saveAttachMent((Part) part.getContent());
}
}
/** * 获得保存附件的地址 * @return */
public String getSaveAttchPath() {
return saveAttachPath;
}
/** * 设置保存附件地址 * @param saveAttchPath */
public void setSaveAttchPath(String saveAttchPath) {
this.saveAttachPath = saveAttchPath;
}
/** * 设置日期格式 * @param dateformate */
public void setDateformate(String dateformate) {
this.dateformate = dateformate;
}
/** * 保存文件内容 * @param filename * @param inputStream * @throws IOException */
private void saveFile(String filename, InputStream inputStream)
throws IOException {
String osname = System.getProperty("os.name");
String storedir = getSaveAttchPath();
String sepatror = "";
if (osname == null) {
osname = "";
}
if (osname.toLowerCase().indexOf("win") != -1) {
sepatror = "//";
if (storedir == null || "".equals(storedir)) {
storedir = "d://temp";
}
} else {
sepatror = "/";
storedir = "/temp";
}
File storefile = new File(storedir + sepatror + filename);
System.out.println("storefile's path:" + storefile.toString());
BufferedOutputStream bos = null;
BufferedInputStream bis = null;
try {
bos = new BufferedOutputStream(new FileOutputStream(storefile));
bis = new BufferedInputStream(inputStream);
int c;
while ((c = bis.read()) != -1) {
bos.write(c);
bos.flush();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
bos.close();
bis.close();
}
}
public void recive(Part part, int i) throws MessagingException, IOException {
System.out.println("------------------START-----------------------");
System.out.println("Message" + i + " subject:" + getSubject());
System.out.println("Message" + i + " from:" + getFrom());
System.out.println("Message" + i + " isNew:" + isNew());
boolean flag = isContainAttch(part);
System.out.println("Message" + i + " isContainAttch:" + flag);
System.out.println("Message" + i + " replySign:" + getReplySign());
getMailContent(part);
System.out.println("Message" + i + " content:" + getBodyText());
setSaveAttchPath("c://temp//" + i);
if (flag) {
// saveAttchMent(part);
}
// save id
saveMsgId();
System.out.println("------------------END-----------------------");
}
/**
* 将已读邮件标记到硬盘
*/
private void saveMsgId() {
try {
String id = getMessageId();
writeToFile("c:/temp", id);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
*
* 写文件
*
* @param dir
* @param id
* @throws UnsupportedEncodingException
*/
private void writeToFile(String dir, String id) throws Exception {
File path = new File(dir);
if (!path.exists()) {
path.mkdirs();
}
File f = new File(dir + "/" + URLEncoder.encode(id, "UTF-8") + ".txt");
try {
FileOutputStream fs = new FileOutputStream(f, false);
OutputStreamWriter write = new OutputStreamWriter(fs, "UTF-8");
BufferedWriter writer = new BufferedWriter(write);
writer.append(id);
writer.close();
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* 判断file是否存在于硬盘
*
* @param file
* @return
*/
private boolean existFile(File file) {
if (file != null) {
return file.exists();
} else {
return false;
}
}
public static void main(String[] args) throws MessagingException,
IOException {
Properties props = new Properties();
props.setProperty("mail.smtp.host", "smtp.qq.com");
props.setProperty("mail.smtp.auth", "true");
Session session = Session.getDefaultInstance(props, null);
URLName urlname = new URLName("pop3", "pop.qq.com", 110, null,
"123456@qq.com", "123456");
Store store = session.getStore(urlname);
store.connect();
Folder folder = store.getFolder("INBOX");
folder.open(Folder.READ_ONLY);
Message msgs[] = folder.getMessages();
int count = msgs.length;
System.out.println("Message Count:" + count);
MailReciver rm = null;
for (int i = 0; i < count; i++) {
rm = new MailReciver((MimeMessage) msgs[i]);
// 仅获取未读邮件
if (!rm.isSeen()) {
rm.recive(msgs[i], i);
}
}
}
}
发表评论
-
新博开启
2013-10-17 11:29 602天涯临枫:http://www.tianyalinfeng ... -
使用FileUtils获取文件夹下所有指定文件
2013-09-23 11:42 1516org.apache.commons.io.FileUt ... -
hibernate去重复数据
2013-09-21 19:16 862DetachedCriteria dc = Detached ... -
ckeditor简单应用
2013-09-13 11:35 802准备 ckeditor前端源码ckeditor_4.2_f ... -
深度复制
2013-09-11 16:50 693浅复制:将一个对象复制后,基本数据类型的变量都会重新创建,而 ... -
Java的23中设计模式
2013-09-10 14:59 1104Java的23中设计模式 从这一块开始,我们详细介绍Jav ... -
设计模式的六大原则
2013-09-10 14:51 838设计模式的六大原则 1、开闭原则(Open Close ... -
heritrix-3.1.1简单使用
2013-09-06 16:43 9021.下载heritrix-3.1.1-dist.zip(此 ... -
web程序禁止访问指定文件
2013-09-04 13:26 727在web.xml中添加如下代码: <security ... -
iframe里取不到struts2 action里的值
2013-08-06 11:23 1131struts action里的属性值正常都是存放在reque ... -
struts2使用UrlRewriteFilter时报错
2013-07-29 11:18 627struts2使用UrlRewriteFilter时报错 ... -
java正则去掉所有html标签
2013-07-02 14:40 860public static String trimHtml( ... -
java类中获取classes文件夹路径
2013-07-02 14:20 987例如:Test.java 在Test中获取项目classe ... -
Ehcache配置
2013-07-01 15:41 816<defaultCache ... -
jsp中 <%! %> 和 <% %> 的区别
2013-05-22 15:35 577<%! int a = 0; %> 当js ... -
用递归实现查找最大值
2013-05-14 11:42 526private static int recursiveM ... -
常用正则表达式
2013-05-07 16:11 476/** * check mobile phone num ... -
中文转拼音
2013-05-02 15:35 431import net.sourceforge.pinyin4 ... -
java获取某一年某个节气日期
2013-04-27 15:43 1863private static String[] solar ... -
公历农历互相转换
2013-04-26 10:08 1022public class CalendarUtil { / ...
相关推荐
### JavaMail发送邮件时遇到的问题及解决方法 在使用JavaMail进行邮件发送的过程中,可能会遇到以下几种常见问题:发送成功但收件方未收到邮件、邮件收到后无主题或无收件人信息以及邮件内容出现乱码等情况。本文将...
下面是一个简单的JavaMail发送邮件的步骤: 1. **导入必要的库**:首先,在项目中导入`mail.jar`和`activation.jar`,确保编译和运行时能够访问到这些库。 2. **配置邮件会话**:创建一个`Properties`对象,设置...
它支持多种协议,包括POP3、IMAP和SMTP,这些协议分别用于接收、检索和发送邮件。在使用JavaMail时,了解如何进行加密和非加密通信对于确保数据安全至关重要。 1. **POP3(Post Office Protocol version 3)**: -...
javamail收发邮件(带附件,正文带图).doc
下面我们将深入探讨JavaMail的基本概念、如何使用JavaMail发送邮件以及在Struts2框架中的实现方式。 JavaMail API主要包括以下组件: 1. `javax.mail.Session`:是JavaMail的核心,负责配置邮件服务器的信息,如...
总的来说,JavaMail API提供了一个强大的工具集,使得在Java应用程序中发送邮件变得简单。这个例子展示了如何使用JavaMail API的基本功能,包括SMTP认证、添加附件和发送HTML邮件,这对于开发Web应用或其他需要邮件...
- JavaMail API提供了一系列接口和类,允许开发者通过SMTP(Simple Mail Transfer Protocol)协议发送邮件。 - 主要涉及的接口和类包括:`Session`(邮件会话)、`Message`(邮件对象)、`Transport`(传输服务)...
基于Javamail的邮件收发系统.zip基于Javamail的邮件收发系统.zip基于Javamail的邮件收发系统.zip基于Javamail的邮件收发系统.zip基于Javamail的邮件收发系统.zip基于Javamail的邮件收发系统.zip基于Javamail的邮件...
在提供的压缩包文件“james+javaMail收发邮件”中,可能包含了示例代码和配置文件,供开发者参考和学习如何在实际项目中实现邮件收发功能,特别是处理中文内容和附件。通过理解和实践这些示例,开发者可以更好地掌握...
这个“javamail发送邮件.zip”压缩包显然包含了一个示例项目,演示如何使用JavaMail API发送包含正文文本、图片以及附件的邮件。以下是对这个主题的详细解释: 1. **JavaMail API**: JavaMail API 是一组接口和类...
JavaMail 是一个强大的开源库,用于在Java应用程序中发送...以上就是使用JavaMail发送邮件的详细过程,以及与文本编辑器KindEditor的集成方式。在开发过程中,记得根据具体需求调整和优化代码,以满足不同的业务场景。
`Transport.send(Message)` 方法是实际发送邮件的关键调用。 5. **Address**:`Address` 类族包括 `InternetAddress`,用于表示电子邮件地址。`InternetAddress` 支持解析和格式化电子邮件地址,并可以作为 `...
4. 如果是发送邮件,创建 MimeMessage 对象,填充邮件信息,然后使用 Transport 发送。 5. 完成操作后,记得关闭 Store 和 Folder。 博客链接中的 "TestMail" 可能是一个示例程序,用于演示如何使用 JavaMail API ...
在尝试使用JavaMail发送邮件时,如果邮件服务器要求使用SSL(Secure Socket Layer)或TLS(Transport Layer Security)协议来确保通信安全,开发者可能会遇到一些挑战。本文将深入探讨如何解决这一问题,主要基于...
这个“javaMail发送邮件依赖的jar包源码整理”提供了关于如何使用 JavaMail 发送邮件以及相关库的源代码,这对于理解其工作原理和自定义功能非常有帮助。 在JavaMail中,主要涉及以下几个核心组件: 1. **JavaMail...
在这个“javamail发送邮件(超链接返回web后台)”的示例中,我们主要关注的是如何使用 JavaMail 发送包含超链接的邮件,并且这个超链接可以返回到 Web 后台。 1. **JavaMail 基础** JavaMail API 提供了 `javax....
6. **发送邮件**:使用`Transport`类的`send()`方法发送邮件。 ```java Transport.send(message); ``` 7. **添加附件**:如果需要发送附件,可以使用`Multipart`和`BodyPart`类。创建一个`MimeMultipart`对象,...
在这个"javaMail收发邮件经典程序"中,我们将深入探讨如何利用JavaMail库进行邮件的发送和接收,并特别关注添加多个附件、指定多个发送人以及接收邮件附件的操作。 首先,要使用JavaMail,我们需要在项目中引入其...
javamail发送邮件的简单实例