Java 接收邮件

接收邮件

import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.Properties;
import javax.mail.Address;
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.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeMultipart;
import javax.mail.internet.MimeUtility;

public class MailReceiver {

	private Session session;
	private Folder folder;
	private Store store;
	private String address;
	private String password;
	
	/*
	 * 构造函数,传入邮箱地址和对应的密码(密码为邮箱授权码)
	 */
	public MailReceiver(String address, String password) {
		this.address = address;
		this.password = password;
		// 设置连接信息
        Properties props = new Properties();
        props.setProperty("mail.store.protocol", "imap");
        props.setProperty("mail.imap.host", "imap.qq.com");
		//获得邮件会话
        this.session = Session.getInstance(props);
	}
	
	/*
	 * 打开收件箱
	 */
	public boolean open() {
		try {
			store = session.getStore("imap");
			store.connect(address, password); 
	        // 获得收件箱
	        folder = store.getFolder("INBOX");
	        folder.open(Folder.READ_WRITE);
		} catch (MessagingException e) {
			return false;
		}
       return true; 
	}
	
	/*
	 * 关闭收件箱
	 */
	public boolean close() {
		// 释放资源
        try {
			folder.close(true);
			store.close();
		} catch (MessagingException e) {
			return false;
		}
        return true;
	}
	
	/*
	 * 获取未读邮件数
	 */
	public int getUnreadMessageCount() throws MessagingException {
		return folder.getUnreadMessageCount();
	}
	
	/*
	 * 获取删除邮件数
	 */
	public int getDeletedMessageCount() throws MessagingException {
		return folder.getDeletedMessageCount();
	}

	/*
	 * 获取全部邮件数
	 */
	public int getMessageCount() throws MessagingException {
			return folder.getMessageCount();
	}
	
	/*
	 * 获取所有邮件对象
	 */
	public Mail[] getMessages() throws MessagingException, IOException{
		Message[] messages = folder.getMessages();
		Mail[] mails = new Mail[messages.length];
		for (int i=0;i<mails.length;i++) mails[i] = new Mail(messages[i]);
		return mails;
	}
	/*
	 * 邮件对象
	 */
	public class Mail{
		//序号
		public int number;
		//主题
		public String subject = "";
		//发件人
		public String sender = "";
		//发件时间
		public String sendDate = "";
		//是否已读
		public boolean isSeen;
		//邮件大小
		public long size;
		//是否包含附件
		public boolean isContainAttachment;
		//文本
		public String text;
		
		private MimeMessage msg;
		public Mail(Message message) throws MessagingException, IOException {
			msg = (MimeMessage) message;
			this.isSeen = isSeen(msg);
			this.number = msg.getMessageNumber();
			this.subject = getSubject(msg);
			this.sender = getFrom(msg);
			this.sendDate = getSentDate(msg, null);
			this.size = msg.getSize();
			this.isContainAttachment = isContainAttachment(msg);
			StringBuffer content = new StringBuffer(100);
	        getMailTextContent(msg, content);
	        this.text = content.toString();
	        message.setFlag(Flags.Flag.SEEN, isSeen);
		}
		//下载附件 路径:mail\\"+number+" "+subject;
		public void download() throws UnsupportedEncodingException, FileNotFoundException, MessagingException, IOException {
			if (!isContainAttachment) return;
			String path = "mail\\"+number+" "+subject;
			File file = new File(path);
			file.mkdirs();
			saveAttachment(msg, path);
		}
		//删除邮件
		public void delete() throws MessagingException {
			((Message)msg).setFlag(Flags.Flag.DELETED, true);
		}
		//设置是否已读
		public void setSeen(boolean seen) throws MessagingException {
			((Message)msg).setFlag(Flags.Flag.SEEN, seen);
		}
	}
	
	
	
	/*****************************止步********************************************/
	//解析消息
	private void parseMessage(Message message) throws MessagingException, IOException {
		MimeMessage msg = (MimeMessage) message;
        System.out.println("------------------解析第" + msg.getMessageNumber()
                + "封邮件-------------------- ");
        System.out.println("主题: " + getSubject(msg));
        System.out.println("发件人: " + getFrom(msg));
        System.out.println("收件人:" + getReceiveAddress(msg, null));
        System.out.println("发送时间:" + getSentDate(msg, null));
        System.out.println("是否已读:" + isSeen(msg));
        System.out.println("邮件优先级:" + getPriority(msg));
        System.out.println("是否需要回执:" + isReplySign(msg));
        System.out.println("邮件大小:" + msg.getSize() / 1024 + "KB");
        boolean isContainerAttachment = isContainAttachment(msg);
        System.out.println("是否包含附件:" + isContainerAttachment);
        if (isContainerAttachment) {
        	String path = "F:\\mailTest\\" + msg.getSubject() + "_"
                    + msg.getMessageNumber() + "_";
        	File file = new File(path);
        	file.mkdirs();
            saveAttachment(msg, path); // 保存附件
        }
        StringBuffer content = new StringBuffer(30);
        getMailTextContent(msg, content);
        System.out.println("邮件正文:"
                + (content.length() > 100 ? content.substring(0, 100)
                        + "..." : content));
        System.out.println("------------------第" + msg.getMessageNumber()
                + "封邮件解析结束-------------------- ");
        System.out.println();
	}
	
	
	
	
	/**
     * @Title: deleteMessage
     * @Description: 解析邮件
     * @param messages
     *            要解析的邮件列表
     * @throws MessagingException
     * @throws IOException
     *             void
     */
    private void deleteMessage(Message... messages)
            throws MessagingException, IOException {
        if (messages == null || messages.length < 1) {
            throw new MessagingException("未找到要解析的邮件!");
        }
        // 解析所有邮件
        for (int i = 0, count = messages.length; i < count; i++) {

            // 邮件删除
            Message message = messages[i];
            String subject = message.getSubject();
            // set the DELETE flag to true
            message.setFlag(Flags.Flag.DELETED, true);
            System.out.println("Marked DELETE for message: " + subject);

        }
    }

    /**
     * @Title: getSubject
     * @Description: 获得邮件主题
     * @param msg
     *            邮件内容
     * @return 解码后的邮件主题
     * @throws UnsupportedEncodingException
     * @throws MessagingException
     *             String
     */
    private String getSubject(MimeMessage msg)
            throws UnsupportedEncodingException, MessagingException {
        return MimeUtility.decodeText(msg.getSubject());
    }

    /**
     * @Title: getFrom
     * @Description: 获得邮件发件人
     * @param msg
     *            邮件内容
     * @return 姓名 <Email地址>
     * @throws MessagingException
     * @throws UnsupportedEncodingException
     *             String
     */
    private String getFrom(MimeMessage msg) throws MessagingException,
            UnsupportedEncodingException {
        String from = "";
        
        Address[] froms = msg.getFrom();
        if (froms.length < 1) {
            throw new MessagingException("没有发件人!");
        }
        InternetAddress address = (InternetAddress) froms[0];
        
        String person = address.getPersonal();
        
        if (person != null) {
            person = MimeUtility.decodeText(person) + " ";
        } else {
            person = "";
        }
        from = person + "<" + address.getAddress() + ">";

        return from;
    }

    /**
     * @Title: getReceiveAddress
     * @Description: 根据收件人类型,获取邮件收件人、抄送和密送地址。如果收件人类型为空,则获得所有的收件人
     *               <p>
     *               Message.RecipientType.TO 收件人
     *               </p>
     *               <p>
     *               Message.RecipientType.CC 抄送
     *               </p>
     *               <p>
     *               Message.RecipientType.BCC 密送
     *               </p>
     * @param msg
     *            邮件内容
     * @param type
     *            收件人类型
     * @return 收件人1 <邮件地址1>, 收件人2 <邮件地址2>, ...
     * @throws MessagingException
     *             String
     */
    private String getReceiveAddress(MimeMessage msg,
            Message.RecipientType type) throws MessagingException {
        StringBuffer receiveAddress = new StringBuffer();
        Address[] addresss = null;
        if (type == null) {
            addresss = msg.getAllRecipients();
        } else {
            addresss = msg.getRecipients(type);
        }

        if (addresss == null || addresss.length < 1) {
            throw new MessagingException("没有收件人!");
        }
        for (Address address : addresss) {
            InternetAddress internetAddress = (InternetAddress) address;
            receiveAddress.append(internetAddress.toUnicodeString())
                    .append(",");
        }

        receiveAddress.deleteCharAt(receiveAddress.length() - 1); // 删除最后一个逗号

        return receiveAddress.toString();
    }

    /**
     * @Title: getSentDate
     * @Description: 获得邮件发送时间
     * @param msg
     *            邮件内容
     * @param pattern
     *            日期格式
     * @return yyyy年mm月dd日 星期X HH:mm
     * @throws MessagingException
     *             String
     */
    private String getSentDate(MimeMessage msg, String pattern)
            throws MessagingException {
        Date receivedDate = msg.getSentDate();
        if (receivedDate == null) {
            return "";
        }
        if (pattern == null || "".equals(pattern)) {
            pattern = "yyyy年MM月dd日 E HH:mm ";
        }
        return new SimpleDateFormat(pattern).format(receivedDate);
    }

    /**
     * @Title: isContainAttachment
     * @Description: 判断邮件中是否包含附件
     * @param part
     *            邮件内容
     * @return 邮件中存在附件返回true,不存在返回false
     * @throws MessagingException
     * @throws IOException
     *             boolean
     */
    private boolean isContainAttachment(Part part)
            throws MessagingException, IOException {
        boolean flag = false;
        if (part.isMimeType("multipart/*")) {
            MimeMultipart multipart = (MimeMultipart) part.getContent();
            int partCount = multipart.getCount();
            for (int i = 0; i < partCount; i++) {
                BodyPart bodyPart = multipart.getBodyPart(i);
                String disp = bodyPart.getDisposition();
                boolean isHasAttachment = (disp != null && (disp
                        .equalsIgnoreCase(Part.ATTACHMENT) || disp
                        .equalsIgnoreCase(Part.INLINE)));
                if (isHasAttachment) {
                    flag = true;
                } else if (bodyPart.isMimeType("multipart/*")) {
                    flag = isContainAttachment(bodyPart);
                } else {
                    String contentType = bodyPart.getContentType();
                    if (contentType.indexOf("application") != -1) {
                        flag = true;
                    }

                    if (contentType.indexOf("name") != -1) {
                        flag = true;
                    }
                }

                if (flag) {
                    break;
                }
            }
        } else if (part.isMimeType("message/rfc822")) {
            flag = isContainAttachment((Part) part.getContent());
        }
        return flag;
    }

    /**
     * @Title: isSeen
     * @Description: 判断邮件是否已读
     * @param msg
     *            邮件内容
     * @return 如果邮件已读返回true,否则返回false
     * @throws MessagingException
     *             boolean
     */
    private boolean isSeen(MimeMessage msg) throws MessagingException {
        return msg.getFlags().contains(Flags.Flag.SEEN);
    }

    /**
     * @Title: isReplySign
     * @Description: 判断邮件是否需要阅读回执
     * @param msg
     *            邮件内容
     * @return 需要回执返回true,否则返回false
     * @throws MessagingException
     *             boolean
     */
    private boolean isReplySign(MimeMessage msg)
            throws MessagingException {
        boolean replySign = false;
        String[] headers = msg.getHeader("Disposition-Notification-To");
        if (headers != null) {
            replySign = true;
        }
        return replySign;
    }

    /**
     * @Title: getPriority
     * @Description: 获得邮件的优先级
     * @param msg
     *            邮件内容
     * @return 1(High):紧急 3:普通(Normal) 5:低(Low)
     * @throws MessagingException
     *             String
     */
    private String getPriority(MimeMessage msg) throws MessagingException {
        String priority = "普通";
        String[] headers = msg.getHeader("X-Priority");
        if (headers != null) {
            String headerPriority = headers[0];
            if (headerPriority.indexOf("1") != -1
                    || headerPriority.indexOf("High") != -1) {
                priority = "紧急";
            } else if (headerPriority.indexOf("5") != -1
                    || headerPriority.indexOf("Low") != -1) {
                priority = "低";
            } else {
                priority = "普通";
            }
        }
        return priority;
    }

    /**
     * @Title: getMailTextContent
     * @Description: 获得邮件文本内容
     * @param part
     *            邮件体
     * @param content
     *            存储邮件文本内容的字符串
     * @throws MessagingException
     * @throws IOException
     *             void
     */
    private void getMailTextContent(Part part, StringBuffer content)
            throws MessagingException, IOException {
        // 如果是文本类型的附件,通过getContent方法可以取到文本内容,但这不是我们需要的结果,所以在这里要做判断
        boolean isContainTextAttach = part.getContentType().indexOf("name") > 0;
        if (part.isMimeType("text/*") && !isContainTextAttach) {
            content.append(part.getContent().toString());
        } else if (part.isMimeType("message/rfc822")) {
            getMailTextContent((Part) part.getContent(), content);
        } else if (part.isMimeType("multipart/*")) {
            Multipart multipart = (Multipart) part.getContent();
            int partCount = multipart.getCount();
            for (int i = 0; i < partCount; i++) {
                BodyPart bodyPart = multipart.getBodyPart(i);
                getMailTextContent(bodyPart, content);
            }
        }
    }

    /**
     * @Title: saveAttachment
     * @Description: 保存附件
     * @param part
     *            邮件中多个组合体中的其中一个组合体
     * @param destDir
     *            附件保存目录
     * @throws UnsupportedEncodingException
     * @throws MessagingException
     * @throws FileNotFoundException
     * @throws IOException
     *             void
     */
    private void saveAttachment(Part part, String destDir)
            throws UnsupportedEncodingException, MessagingException,
            FileNotFoundException, IOException {
        if (part.isMimeType("multipart/*")) {
            Multipart multipart = (Multipart) part.getContent(); // 复杂体邮件
            // 复杂体邮件包含多个邮件体
            int partCount = multipart.getCount();
            for (int i = 0; i < partCount; i++) {
                // 获得复杂体邮件中其中一个邮件体
                BodyPart bodyPart = multipart.getBodyPart(i);
                // 某一个邮件体也有可能是由多个邮件体组成的复杂体
                String disp = bodyPart.getDisposition();
                boolean isHasAttachment = (disp != null && (disp
                        .equalsIgnoreCase(Part.ATTACHMENT) || disp
                        .equalsIgnoreCase(Part.INLINE)));
                if (isHasAttachment) {
                    InputStream is = bodyPart.getInputStream();
                    saveFile(is, destDir, decodeText(bodyPart.getFileName()));
                    System.out.println("----附件:"
                            + decodeText(bodyPart.getFileName()) + ","
                            + " 保存路径为" + destDir);
                } else if (bodyPart.isMimeType("multipart/*")) {
                    saveAttachment(bodyPart, destDir);
                } else {
                    String contentType = bodyPart.getContentType();
                    if (contentType.indexOf("name") != -1
                            || contentType.indexOf("application") != -1) {
                        saveFile(bodyPart.getInputStream(), destDir,
                                decodeText(bodyPart.getFileName()));
                    }
                }
            }
        } else if (part.isMimeType("message/rfc822")) {
            saveAttachment((Part) part.getContent(), destDir);
        }
    }

    /**
     * @Title: saveFile
     * @Description: 读取输入流中的数据保存至指定目录
     * @param is
     *            输入流
     * @param destDir
     *            文件存储目录
     * @param fileName
     *            文件名
     * @throws FileNotFoundException
     * @throws IOException
     *             void
     */
    private static void saveFile(InputStream is, String destDir, String fileName)
            throws FileNotFoundException, IOException {
        BufferedInputStream bis = new BufferedInputStream(is);
        BufferedOutputStream bos = new BufferedOutputStream(
                new FileOutputStream(new File(destDir + fileName)));
        int len = -1;
        while ((len = bis.read()) != -1) {
            bos.write(len);
            bos.flush();
        }
        bos.close();
        bis.close();
    }

    /**
     * @Title: decodeText
     * @Description: 文本解码
     * @param encodeText
     *            解码MimeUtility.encodeText(String text)方法编码后的文本
     * @return 解码后的文本
     * @throws UnsupportedEncodingException
     *             String
     */
    private String decodeText(String encodeText)
            throws UnsupportedEncodingException {
        if (encodeText == null || "".equals(encodeText)) {
            return "";
        } else {
            return MimeUtility.decodeText(encodeText);
        }
    }
	
	
}


使用示例

import java.io.IOException;
import javax.mail.MessagingException;
import sender.MailReceiver.Mail;

public class Main {

	public static void main(String[] args) throws MessagingException, IOException {		
		
		System.out.println("邮件接收");
		MailReceiver mailReceiver = new MailReceiver("2575254458@qq.com", "********");
		System.out.println("打开收件箱是否成功:"+mailReceiver.open());	
		System.out.println("未读邮件数:"+mailReceiver.getUnreadMessageCount());
		System.out.println("总邮件数:"+mailReceiver.getMessageCount());
		Mail[] mails = mailReceiver.getMessages();
		mailReceiver.close();
		System.out.println("已关闭收件箱");

	}

}

其中,类Mail的代码如下

/*
	 * 邮件对象
	 */
	public class Mail{
		//序号
		public int number;
		//主题
		public String subject = "";
		//发件人
		public String sender = "";
		//发件时间
		public String sendDate = "";
		//是否已读
		public boolean isSeen;
		//邮件大小
		public long size;
		//是否包含附件
		public boolean isContainAttachment;
		//文本
		public String text;
		
		private MimeMessage msg;
		public Mail(Message message) throws MessagingException, IOException {
			msg = (MimeMessage) message;
			this.isSeen = isSeen(msg);
			this.number = msg.getMessageNumber();
			this.subject = getSubject(msg);
			this.sender = getFrom(msg);
			this.sendDate = getSentDate(msg, null);
			this.size = msg.getSize();
			this.isContainAttachment = isContainAttachment(msg);
			StringBuffer content = new StringBuffer(100);
	        getMailTextContent(msg, content);
	        this.text = content.toString();
	        message.setFlag(Flags.Flag.SEEN, isSeen);
		}
		//下载附件 路径:mail\\"+number+" "+subject;
		public void download() throws UnsupportedEncodingException, FileNotFoundException, MessagingException, IOException {
			if (!isContainAttachment) return;
			String path = "mail\\"+number+" "+subject;
			File file = new File(path);
			file.mkdirs();
			saveAttachment(msg, path);
		}
		//删除邮件
		public void delete() throws MessagingException {
			((Message)msg).setFlag(Flags.Flag.DELETED, true);
		}
		//设置是否已读
		public void setSeen(boolean seen) throws MessagingException {
			((Message)msg).setFlag(Flags.Flag.SEEN, seen);
		}
	}
  • 3
    点赞
  • 15
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
以下是使用Java发送邮件的示例代码: ```java import java.util.Properties; import javax.mail.*; import javax.mail.internet.*; public class EmailSender { public static void sendEmail(String subject, String content, String receiver) { // 配置SMTP服务器 Properties properties = new Properties(); properties.setProperty("mail.smtp.host", "smtp.example.com"); properties.setProperty("mail.smtp.port", "587"); properties.setProperty("mail.smtp.auth", "true"); properties.setProperty("mail.smtp.starttls.enable", "true"); properties.setProperty("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory"); // 创建会话 Session session = Session.getInstance(properties, new Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("[email protected]", "your_password"); } }); try { // 创建邮件消息 Message message = new MimeMessage(session); message.setFrom(new InternetAddress("[email protected]")); message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(receiver)); message.setSubject(subject); message.setText(content); // 发送邮件 Transport.send(message); System.out.println("邮件发送成功!"); } catch (MessagingException e) { System.out.println("邮件发送失败:" + e.getMessage()); } } public static void main(String[] args) { String subject = "测试邮件"; String content = "这是一封测试邮件,请勿回复。"; String receiver = "[email protected]"; sendEmail(subject, content, receiver); } } ``` 请注意,上述代码中的SMTP服务器地址、端口号、发件人邮箱和密码需要根据实际情况进行修改。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

梦星辰.

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值