给舅妈打下手搞了好几天,终于算完事了,可真辛苦(这红烧肉可味道真棒)。

把自己的事情都给落下了。

打开邮箱一看,好家伙,一堆邮件,有用的没用的,整的我头皮发麻。

赶紧整理一下这些东西。

因为这次准备放到日常维护的java项目中日常跑,所以就不用python啦。

好了,因为这回不给舅妈看,直接上操作。

一、先给邮箱开通POP3/SMTP服务服务。

这里拿qq邮箱演示,大家都有哈。

java 表格读取 邮件正文 java读取邮件中的附件_Text


java 表格读取 邮件正文 java读取邮件中的附件_Text_02


1.首先要确保服务开启

2.需要生成授信码,后续代码中连接的密码不是登录密码,而是用的授信码

二、连接邮箱配置


java 表格读取 邮件正文 java读取邮件中的附件_服务器_03

qq邮箱服务器地址

public static void resceive() throws Exception {
        // 服务器地址
        String servicePath = "pop.qq.com"; 
        // 端口号
        String duankou = "110";  
        // 邮箱名
        String emailName = "*******@qq.com";
        // 前面提到的授信码
        String password = "*********";


        // 准备连接服务器的会话信息
        Properties props = new Properties();
        // 连接超时报错配置
        props.setProperty("mail.pop3.timeout", "2000");         
        props.setProperty("mail.store.protocol", "pop3");       
        props.setProperty("mail.pop3.port", duankou);           
        props.setProperty("mail.pop3.host", servicePath);       

        // 创建Session实例对象
        Session session = Session.getInstance(props);
        Store store = session.getStore("pop3");
        store.connect(emailName , password); 


        // 获得收件箱 只能获取一个月内的邮件
        Folder folder = store.getFolder("INBOX");
        // 如果要读写的话可以选择READ_WRITE
        folder.open(Folder.READ_ONLY); 

        // 获得收件箱中的邮件总数
        System.out.println("邮件总数: " + folder.getMessageCount());

        // 筛选收件箱中带附件的邮件并将文件保存到本地
        Message[] messages = folder.getMessages();
        parseFileMessage(messages);

        //释放资源
        folder.close(true);
        store.close();
    }


三、对附件文件进行筛选


public static void parseFileMessage(Message ...messages) throws Exception {
        if (messages == null || messages.length < 1)
            System.out.println("没有需要处理的邮件");

        // 解析所有邮件
        for (int i = 0; i < messages.length; i++) {
            MimeMessage msg = (MimeMessage) messages[i];
            System.out.println("主题: " + getSubject(msg));
            System.out.println("发件人: " + getFrom(msg));
            boolean isContainerAttachment = isContainAttachment(msg);
            System.out.println("是否包含附件:" + isContainerAttachment);
            if (isContainerAttachment) {
                saveAttachment(msg, "D:datamailFile",getSubject(msg)); //保存附件
            }else {
                continue;
            }
            System.out.println("当前为第"+msg.getMessageNumber()+"封邮件");
        }
    }

   /**
     * 判断邮件中是否包含附件
     * @return 存在附件返回true,不存在返回false
     */
    public static boolean isContainAttachment(Part part) throws Exception {
        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;
    }


四、保存文件


/**
     * 保存文件
     * @param destDir   文件目录
     * @param fileName  文件名
     * @throws Exception
     */
    public static void saveAttachment(Part part, String destDir,String fileName) throws Exception {
        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();
                String decodeName = decodeText(bodyPart.getFileName());
                decodeName = StringUtils.isEmpty(decodeName)?fileName:decodeName;
                if (disp != null && (disp.equalsIgnoreCase(Part.ATTACHMENT) || disp.equalsIgnoreCase(Part.INLINE))) {
                    saveFile(bodyPart.getInputStream(), destDir, decodeName);
                } else if (bodyPart.isMimeType("multipart/*")) {
                    saveAttachment(bodyPart,destDir,fileName);
                } else {
                    String contentType = bodyPart.getContentType();
                    if (contentType.indexOf("name") != -1 || contentType.indexOf("application") != -1) {
                        saveFile(bodyPart.getInputStream(), destDir, decodeName);
                    }
                }
            }
        } else if (part.isMimeType("message/rfc822")) {
            saveAttachment((Part) part.getContent(),destDir,fileName);
        }
    }

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

    /**
     * 创建一个空目录
     */
    public static void createEmptyDirectory(String directoryPath) throws IOException {
        File file = new File(directoryPath);
        if(!file.exists()){
            file.mkdirs();
        }
    }

    /**
     * 文本解码
     */
    public static String decodeText(String encodeText) throws Exception {
        if (encodeText == null || "".equals(encodeText)) {
            return "";
        } else {
            return MimeUtility.decodeText(encodeText);
        }
    }


五、好咯,检查下文件就可以听歌休息去了,想着啥时候再去蹭顿红烧肉呢


java 表格读取 邮件正文 java读取邮件中的附件_java poi读取word中附件_04