码迷,mamicode.com
首页 > 其他好文 > 详细

使用commons-email解析 eml文件

时间:2014-05-31 06:11:38      阅读:478      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

在对eml文件进行索引的时候需要先对其进行解析,提取出其中的收件人、发件人、文件内容和附件等信息

下边是解析eml文件的一个demo(在运行之前需要先导入mail.jar 和commons-email.jar)

bubuko.com,布布扣
 1 package com.jiaoyiping.windowsfilesearch.test;
 2 
 3 import org.apache.commons.mail.util.MimeMessageParser;
 4 import org.apache.commons.mail.util.MimeMessageUtils;
 5 
 6 import javax.mail.MessagingException;
 7 import javax.mail.internet.MimeMessage;
 8 import java.io.File;
 9 import java.io.IOException;
10 
11 /**
12  * Created with IntelliJ IDEA.
13  * User: 一平
14  * Date: 14-5-30
15  * Time: 上午9:09
16  * To change this template use File | Settings | File Templates.
17  */
18 public class EmailTest {
19     public static void main(String[] args) {
20         File file = new File("D:\\2013年12月21日重装系统之前数据备份\\邮件备份\\Fw_ Fw_ Fw_ 信息化报表需求.eml");
21         try {
22             MimeMessage mimeMessage = MimeMessageUtils.createMimeMessage(null, file);
23             MimeMessageParser parser = new MimeMessageParser(mimeMessage);
24             System.out.println("发件人:"+parser.getFrom());
25             System.out.println("主题:"+parser.getSubject());
26             System.out.println("收件人:"+parser.getTo());
27             System.out.println(parser.parse().getPlainContent());  //结果为空
28             System.out.println(parser.parse().getHtmlContent()); //结果为空
29             //parse.parse()方法返回的也是MimeMessageParser对象,不调用parse()方法就无法的到邮件内容,只能得到主题和收件人等信息
30             if(parser.parse().hasPlainContent()){  //这里一定要调用parser.parse方法
31                 System.out.println(parser.parse().getPlainContent());
32             }
33 
34 
35 
36         } catch (MessagingException e) {
37             e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
38         } catch (IOException e) {
39             e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
40         } catch (Exception e) {
41             e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
42         }
43 
44 
45     }
46 }
bubuko.com,布布扣

 

使用commons-email解析 eml文件,布布扣,bubuko.com

使用commons-email解析 eml文件

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/jiaoyiping/p/3761560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!