1. 程式人生 > >JavaMail系列(四) 使用POP3協議接收並解析電子郵件

JavaMail系列(四) 使用POP3協議接收並解析電子郵件

package org.yangxin.study.jm; 
 
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; 
 
/**
 * 使用POP3協議接收郵件
 */ 
public class POP3ReceiveMailTest { 
     
    public static void main(String[] args) throws Exception { 
        receive(); 
    } 
     
    /**
     * 接收郵件
     */ 
    public static void receive() throws Exception { 
        // 準備連線伺服器的會話資訊 
        Properties props = new Properties(); 
        props.setProperty("mail.store.protocol", "pop3");       // 協議 
        props.setProperty("mail.pop3.port", "110");             // 埠 
        props.setProperty("mail.pop3.host", "pop3.163.com");    // pop3伺服器 
         
        // 建立Session例項物件 
        Session session = Session.getInstance(props); 
        Store store = session.getStore("pop3"); 
        store.connect("

[email protected]", "123456abc"); 
         
        // 獲得收件箱 
        Folder folder = store.getFolder("INBOX"); 
        /* Folder.READ_ONLY:只讀許可權
         * Folder.READ_WRITE:可讀可寫(可以修改郵件的狀態)
         */ 
        folder.open(Folder.READ_WRITE); //開啟收件箱 
         
        // 由於POP3協議無法獲知郵件的狀態,所以getUnreadMessageCount得到的是收件箱的郵件總數 
        System.out.println("未讀郵件數: " + folder.getUnreadMessageCount()); 
         
        // 由於POP3協議無法獲知郵件的狀態,所以下面得到的結果始終都是為0 
        System.out.println("刪除郵件數: " + folder.getDeletedMessageCount()); 
        System.out.println("新郵件: " + folder.getNewMessageCount()); 
         
        // 獲得收件箱中的郵件總數 
        System.out.println("郵件總數: " + folder.getMessageCount()); 
         
        // 得到收件箱中的所有郵件,並解析 
        Message[] messages = folder.getMessages(); 
        parseMessage(messages); 
         
        //釋放資源 
        folder.close(true); 
        store.close(); 
    } 
     
    /**
     * 解析郵件
     * @param messages 要解析的郵件列表
     */ 
    public static void parseMessage(Message ...messages) throws MessagingException, IOException { 
        if (messages == null || messages.length < 1)  
            throw new MessagingException("未找到要解析的郵件!"); 
         
        // 解析所有郵件 
        for (int i = 0, count = messages.length; i < count; i++) { 
            MimeMessage msg = (MimeMessage) messages[i]; 
            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) { 
                saveAttachment(msg, "c:\\mailtmp\\"+msg.getSubject() + "_"); //儲存附件 
            }  
            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(); 
        } 
    } 
     
    /**
     * 獲得郵件主題
     * @param msg 郵件內容
     * @return 解碼後的郵件主題
     */ 
    public static String getSubject(MimeMessage msg) throws UnsupportedEncodingException, MessagingException { 
        return MimeUtility.decodeText(msg.getSubject()); 
    } 
     
    /**
     * 獲得郵件發件人
     * @param msg 郵件內容
     * @return 姓名 <Email地址>
     * @throws MessagingException
     * @throws UnsupportedEncodingException 
     */ 
    public static 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; 
    } 
     
    /**
     * 根據收件人型別,獲取郵件收件人、抄送和密送地址。如果收件人型別為空,則獲得所有的收件人
     * <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
     */ 
    public static 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(); 
    } 
     
    /**
     * 獲得郵件傳送時間
     * @param msg 郵件內容
     * @return yyyy年mm月dd日 星期X HH:mm
     * @throws MessagingException
     */ 
    public static 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); 
    } 
     
    /**
     * 判斷郵件中是否包含附件
     * @param msg 郵件內容
     * @return 郵件中存在附件返回true,不存在返回false
     * @throws MessagingException
     * @throws IOException
     */ 
    public static 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(); 
                if (disp != null && (disp.equalsIgnoreCase(Part.ATTACHMENT) || disp.equalsIgnoreCase(Part.INLINE))) { 
                    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; 
    } 
     
    /** 
     * 判斷郵件是否已讀  
www.2cto.com

     * @param msg 郵件內容 
     * @return 如果郵件已讀返回true,否則返回false 
     * @throws MessagingException  
     */ 
    public static boolean isSeen(MimeMessage msg) throws MessagingException { 
        return msg.getFlags().contains(Flags.Flag.SEEN); 
    } 
     
    /**
     * 判斷郵件是否需要閱讀回執
     * @param msg 郵件內容
     * @return 需要回執返回true,否則返回false
     * @throws MessagingException
     */ 
    public static boolean isReplySign(MimeMessage msg) throws MessagingException { 
        boolean replySign = false; 
        String[] headers = msg.getHeader("Disposition-Notification-To"); 
        if (headers != null) 
            replySign = true; 
        return replySign; 
    } 
     
    /**
     * 獲得郵件的優先順序
     * @param msg 郵件內容
     * @return 1(High):緊急  3:普通(Normal)  5:低(Low)
     * @throws MessagingException 
     */ 
    public static 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; 
    }  
     
    /**
     * 獲得郵件文字內容
     * @param part 郵件體
     * @param content 儲存郵件文字內容的字串
     * @throws MessagingException
     * @throws IOException
     */ 
    public static 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); 
            } 
        } 
    } 
     
    /** 
     * 儲存附件 
     * @param part 郵件中多個組合體中的其中一個組合體 
     * @param destDir  附件儲存目錄 
     * @throws UnsupportedEncodingException 
     * @throws MessagingException 
     * @throws FileNotFoundException 
     * @throws IOException 
     */ 
    public static 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(); 
                if (disp != null && (disp.equalsIgnoreCase(Part.ATTACHMENT) || disp.equalsIgnoreCase(Part.INLINE))) { 
                    InputStream is = bodyPart.getInputStream(); 
                    saveFile(is, destDir, decodeText(bodyPart.getFileName())); 
                } 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); 
        } 
    } 
     
    /** 
     * 讀取輸入流中的資料儲存至指定目錄 
     * @param is 輸入流 
     * @param fileName 檔名 
     * @param destDir 檔案儲存目錄 
     * @throws FileNotFoundException 
     * @throws IOException 
     */ 
    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(); 
    } 
     
    /**
     * 文字解碼
     * @param encodeText 解碼MimeUtility.encodeText(String text)方法編碼後的文字
     * @return 解碼後的文字
     * @throws UnsupportedEncodingException
     */ 
    public static String decodeText(String encodeText) throws UnsupportedEncodingException { 
        if (encodeText == null || "".equals(encodeText)) { 
            return ""; 
        } else { 
            return MimeUtility.decodeText(encodeText); 
        } 
    } 

測試結果:

 

原文連結:http://www.2cto.com/kf/201206/136651.html

相關推薦

JavaMail系列() 使用POP3協議接收解析電子郵件

package org.yangxin.study.jm;  import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; import java.i

JavaMail系列(五) 使用IMAP協議接收解析電子郵件

package org.yangxin.study.jm;  import java.io.BufferedReader; import java.io.InputStreamReader; import java.util.Properties;  import javax

【Java集合系列】HashSet和LinkedHashSet解析

inpu skin lam 繼承 depend try put args port 2017-07-29 16:58:13 一、簡介 1、Set概念 Set可以理解為集合,非常類似數據概念中的集合,集合三大特征:1、確定性;2、互異性;3、無序性,因此Set實現類也有類似的

android串列埠通訊接受自定義協議資料解析問題

1.一般自定義的串列埠協議  串列埠傳輸介面底層是按位(bit)傳送的,上層是按byte傳送和接收的,但協議為了方便描述,每個byte用十六進位制數(0x00~0xFF)表示,範相當於十進位制的0~255,而byte為八位且是有符號型別,相當於十進位制的-128~127,明

PHP接收解析微信支付結果通知

支付完成後,微信會把相關支付結果和使用者資訊傳送給商戶,商戶需要接收處理,並返回應答。微信通知資訊為xml格式。 資訊格式大致如下: <xml><appid><![CDATA[wx65498522b9a7pokr]]></appid

Java Mail---SMTP、POP3協議-DOS下手動收發郵件演示過程

轉載請註明出處: http://blog.csdn.net/qq_26525215 本文源自 E-Mail協議簡介: 郵件伺服器,按照提供的服務型別,可以分為傳送郵件的伺服器我接收郵件的伺服器。 傳送郵件的伺服器使用傳送協議,現在常用的是SMTP協

[原始碼和報告分享] C#實現的基於SMTP協議的E-MAIL電子郵件傳送客戶端軟體

利用SMTP和Pop協議從底層開發了這個軟體。SMTP全稱是簡單郵件傳輸協議,它專門用來發送郵件用的。Pop全稱是郵局協議,是專門用於接收郵件的。我主要是負責如何實現傳送郵件功能的。MailSend名稱空間是我整個程式的核心。它包括兩個類。在SmtpMail的類中包含了一個SendMail的方法,它

代碼收藏系列--php--加載sql文件解析成數組

存儲過程 exist eat ati body his ble class 註釋 php加載sql文件,解析成以分號分割的數組。(支持存儲過程和函數提取,自動過濾註釋) /** * 加載sql文件為分號分割的數組 * <br />支持存儲過程和函數提取

Python爬蟲系列):Beautiful Soup解析HTML之把HTML轉成Python對象

調用 nor 結束 版本 現在 name屬性 data 官方文檔 get 在前幾篇文章,我們學會了如何獲取html文檔內容,就是從url下載網頁。今天開始,我們將討論如何將html轉成python對象,用python代碼對文檔進行分析。 (牛小妹在學校折騰了好幾天,也沒把h

dubbo系列、dubbo啟動過程源碼解析

eric notify sport contain cse fabs tde sign 平臺 一、代碼準備 1、示例代碼 參考dubbo系列二、dubbo+zookeeper+dubboadmin分布式服務框架搭建(windows平臺) 2、簡單了解下spring自定

SpringMVC 接收頁面Post提交的json字串解析

son 使用的是ali的fastjson; 頁面提交的是json字串,後臺使用@RequestBody String param接收資料,通過json解析param;   頁面: <%@ page language="java" contentType="text/h

rxJava和rxAndroid原始碼解析系列之subscribeOn和observeOn的理解(學習終結篇)

本篇文章主要解決subscribeOn和observeOn這兩個方法為什麼subscribeOn只有一次有效果,observeOn切換多次回撥的都有效果。 不知道朋友有沒有看過rxandroid的原始碼,如果看過的話,就會迎刃而解,沒什麼疑慮啦。沒看過原始碼的朋友,可以看看我這個系列的前幾篇文章

SMTP協議POP3協議-郵件發送和接收原理(轉)

賬戶 pub 上進 現實生活 targe base64編碼 郵局 list amr 本文轉自https://blog.csdn.net/qq_15646957/article/details/52544099 感謝作者 一、 郵件開發涉及到的一些基本概念 1.1、郵件服

爬蟲入門系列):HTML文字解析庫BeautifulSoup

爬蟲入門系列目錄: 系列文章的第3篇介紹了網路請求庫神器 Requests ,請求把資料返回來之後就要提取目標資料,不同的網站返回的內容通常有多種不同的格式,一種是 json 格式,這類資料對開發者來說最友好。另一種 XML 格式的,還有一種最常見格式的是 HTML 文件,今天就來講講

命令列傳送接收郵件smtp、pop3協議-計網(3)

前言 學習郵件系統的相關知識後,實際操作一下。應用一下具體的命令列。 正文 要看看我計算機網路應用層基礎總結的這裡 smtp協議 常見命令 命令列 作用

專案實戰:、判斷有網沒網 解析資料新增到資料庫

1.這個比較複雜 程式碼比較多發的這個是其中的一個頁面 我就簡單寫一下思路吧 如果要往資料庫裡面新增的話 先建立一個數據庫 然後在Dao層寫增刪改查方法 下面開始寫頁面展示內容 內容太多我也不多說了 public class Fragment01 extends Fragment {  

JAVA後臺接收前臺傳過來的json字串解析獲得key 和value

前臺程式碼: $.ajax({ type:"post", url:"project/updateProject", data:{ formda

如何在WebService接收一個XML檔案解析,客戶端如何傳送這個XML檔案?急求簡單程式碼示例。。

客戶端 xmlHttp = null; if (window.XMLHttpRequest) { // If IE7, Mozilla, Safari, and so on: Use native object. xmlHtt

關於java 傳送http json資料格式請求時,伺服器端如何接收json資料解析

一般情況下,傳送http請求時content-tye是application/x-www-form-urlencoded格式,而這樣的格式會以鍵值對的形似被封裝,至於是在瀏覽器傳送的時候被封裝的還是在伺服器端被封裝的我還不太清楚。但是我的猜測是在瀏覽器傳送請求的時候在客戶端

Docker教程系列:Docker上部署MySQL解決中文亂碼問題

1下載MySQL映象 如果不指定mysql的版本預設下載mysql8,mysql8的變化比較大,所以還是用mysql5.7吧。 docker pull mysql:5.7  檢視映象:   docker images 2建立MySQL容器