admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
package org.yeshi.utils.mail;
 
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
 
import javax.mail.BodyPart;
import javax.mail.Flags;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Multipart;
import javax.mail.Part;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
import javax.mail.internet.MimeUtility;
 
public class ShowMail {
 
    private MimeMessage mimeMessage = null;
 
    private String saveAttachPath = ""; // 附件下载后的存放目录
 
    private StringBuffer bodyText = new StringBuffer(); // 存放邮件内容的StringBuffer对象
 
    private String dateFormat = "yy-MM-dd HH:mm"; // 默认的日前显示格式
 
    /**
     * 
     * 构造函数,初始化一个MimeMessage对象
     * 
     */
 
    public ShowMail() {
 
    }
 
    public ShowMail(MimeMessage mimeMessage) {
 
        this.mimeMessage = mimeMessage;
 
        // System.out.println("创建一个ReceiveEmail对象....");
 
    }
 
    public void setMimeMessage(MimeMessage mimeMessage) {
 
        this.mimeMessage = mimeMessage;
 
        // System.out.println("设置一个MimeMessage对象...");
 
    }
 
    /**
     * 
     * * 获得发件人的地址和姓名
     * 
     */
 
    public String getFrom() throws Exception {
 
        InternetAddress address[] = (InternetAddress[]) mimeMessage.getFrom();
 
        String from = address[0].getAddress();
 
        if (from == null) {
 
            from = "";
 
            // System.out.println("无法知道发送者.");
 
        }
 
        String personal = address[0].getPersonal();
 
        if (personal == null) {
 
            personal = "";
 
            // System.out.println("无法知道发送者的姓名.");
 
        }
 
        String fromAddr = null;
 
        if (personal != null || from != null) {
            fromAddr = personal + "<" + from + ">";
            // System.out.println("发送者是:" + fromAddr);
        }
        return fromAddr;
    }
 
    /**
     * 
     * * 获得邮件的收件人,抄送,和密送的地址和姓名,根据所传递的参数的不同
     * 
     * * "to"----收件人 "cc"---抄送人地址 "bcc"---密送人地址
     * 
     */
 
    public String getMailAddress(String type) throws Exception {
 
        String mailAddr = "";
 
        String addType = type.toUpperCase();
 
        InternetAddress[] address = null;
 
        if (addType.equals("TO") || addType.equals("CC")
 
                || addType.equals("BCC")) {
 
            if (addType.equals("TO")) {
 
                address = (InternetAddress[]) mimeMessage
 
                        .getRecipients(Message.RecipientType.TO);
 
            } else if (addType.equals("CC")) {
 
                address = (InternetAddress[]) mimeMessage
 
                        .getRecipients(Message.RecipientType.CC);
 
            } else {
 
                address = (InternetAddress[]) mimeMessage
 
                        .getRecipients(Message.RecipientType.BCC);
 
            }
 
            if (address != null) {
 
                for (int i = 0; i < address.length; i++) {
 
                    String emailAddr = address[i].getAddress();
 
                    if (emailAddr == null) {
 
                        emailAddr = "";
 
                    } else {
 
                        // System.out.println("转换之前的emailAddr: " + emailAddr);
 
                        emailAddr = MimeUtility.decodeText(emailAddr);
 
                        // System.out.println("转换之后的emailAddr: " + emailAddr);
 
                    }
 
                    String personal = address[i].getPersonal();
 
                    if (personal == null) {
 
                        personal = "";
 
                    } else {
 
                        // System.out.println("转换之前的personal: " + personal);
 
                        personal = MimeUtility.decodeText(personal);
 
                        // System.out.println("转换之后的personal: " + personal);
 
                    }
 
                    String compositeto = personal + "<" + emailAddr + ">";
 
                    // System.out.println("完整的邮件地址:" + compositeto);
 
                    mailAddr += "," + compositeto;
 
                }
 
                mailAddr = mailAddr.substring(1);
 
            }
 
        } else {
 
            throw new Exception("错误的电子邮件类型!");
 
        }
 
        return mailAddr;
 
    }
 
    /**
     * 
     * * 获得邮件主题
     * 
     */
 
    public String getSubject() throws MessagingException {
 
        String subject = "";
 
        try {
 
            // System.out.println("转换前的subject:" + mimeMessage.getSubject());
 
            subject = MimeUtility.decodeText(mimeMessage.getSubject());
 
            // System.out.println("转换后的subject: " + mimeMessage.getSubject());
 
            if (subject == null) {
 
                subject = "";
 
            }
 
        } catch (Exception exce) {
 
            exce.printStackTrace();
 
        }
 
        return subject;
 
    }
 
    /**
     * 
     * * 获得邮件发送日期
     * 
     */
 
    public String getSentDate() throws Exception {
 
        Date sentDate = mimeMessage.getSentDate();
 
        // System.out.println("发送日期 原始类型: " + dateFormat);
 
        SimpleDateFormat format = new SimpleDateFormat(dateFormat);
 
        String strSentDate = format.format(sentDate);
 
        // System.out.println("发送日期 可读类型: " + strSentDate);
 
        return strSentDate;
 
    }
 
    /**
     * 
     * * 获得邮件正文内容
     * 
     */
 
    public String getBodyText() {
 
        return bodyText.toString();
 
    }
 
    /**
     * 
     * * 解析邮件,把得到的邮件内容保存到一个StringBuffer对象中,解析邮件
     * 
     * * 主要是根据MimeType类型的不同执行不同的操作,一步一步的解析
     * 
     */
 
    public void getMailContent(Part part) throws Exception {
 
        String contentType = part.getContentType();
 
        // 获得邮件的MimeType类型
 
        // System.out.println("邮件的MimeType类型: " + contentType);
 
        int nameIndex = contentType.indexOf("name");
 
        boolean conName = false;
 
        if (nameIndex != -1) {
 
            conName = true;
 
        }
 
        // System.out.println("邮件内容的类型: " + contentType);
 
        if (part.isMimeType("text/plain") && conName == false) {
 
            // text/plain 类型
 
            bodyText.append((String) part.getContent());
 
        } else if (part.isMimeType("text/html") && conName == false) {
 
            // text/html 类型
 
            bodyText.append((String) part.getContent());
 
        } else if (part.isMimeType("multipart/*")) {
 
            // multipart/*
 
            Multipart multipart = (Multipart) part.getContent();
 
            int counts = multipart.getCount();
 
            for (int i = 0; i < counts; i++) {
 
                getMailContent(multipart.getBodyPart(i));
 
            }
 
        } else if (part.isMimeType("message/rfc822")) {
 
            // message/rfc822
 
            getMailContent((Part) part.getContent());
 
        } else {
 
        }
 
    }
 
    /**
     * 
     * * 判断此邮件是否需要回执,如果需要回执返回"true",否则返回"false"
     * 
     */
 
    public boolean getReplySign() throws MessagingException {
 
        boolean replySign = false;
 
        String needReply[] = mimeMessage
 
                .getHeader("Disposition-Notification-To");
 
        if (needReply != null) {
 
            replySign = true;
 
        }
 
        if (replySign) {
 
            // System.out.println("该邮件需要回复");
 
        } else {
 
            // System.out.println("该邮件不需要回复");
 
        }
 
        return replySign;
 
    }
 
    /**
     * 
     * 获得此邮件的Message-ID
     * 
     */
 
    public String getMessageId() throws MessagingException {
 
        String messageID = mimeMessage.getMessageID();
 
        // System.out.println("邮件ID: " + messageID);
 
        return messageID;
 
    }
 
    /**
     * 
     * 判断此邮件是否已读,如果未读返回false,反之返回true
     * 
     */
 
    public boolean isNew() throws MessagingException {
 
        boolean isNew = false;
 
        Flags flags = ((Message) mimeMessage).getFlags();
 
        Flags.Flag[] flag = flags.getSystemFlags();
 
        // System.out.println("flags的长度: " + flag.length);
 
        for (int i = 0; i < flag.length; i++) {
 
            if (flag[i] == Flags.Flag.SEEN) {
 
                isNew = true;
 
                // System.out.println("seen email...");
 
                // break;
 
            }
 
        }
 
        return isNew;
 
    }
 
    /**
     * 
     * 判断此邮件是否包含附件
     * 
     */
 
    public boolean isContainAttach(Part part) throws Exception {
 
        boolean attachFlag = false;
 
        // String contentType = part.getContentType();
 
        if (part.isMimeType("multipart/*")) {
 
            Multipart mp = (Multipart) part.getContent();
 
            for (int i = 0; i < mp.getCount(); i++) {
 
                BodyPart mPart = mp.getBodyPart(i);
 
                String disposition = mPart.getDisposition();
 
                if ((disposition != null)
 
                        && ((disposition.equals(Part.ATTACHMENT)) || (disposition
 
                                .equals(Part.INLINE))))
 
                    attachFlag = true;
 
                else if (mPart.isMimeType("multipart/*")) {
 
                    attachFlag = isContainAttach((Part) mPart);
 
                } else {
 
                    String conType = mPart.getContentType();
 
                    if (conType.toLowerCase().indexOf("application") != -1)
 
                        attachFlag = true;
 
                    if (conType.toLowerCase().indexOf("name") != -1)
 
                        attachFlag = true;
 
                }
 
            }
 
        } else if (part.isMimeType("message/rfc822")) {
 
            attachFlag = isContainAttach((Part) part.getContent());
 
        }
 
        return attachFlag;
 
    }
 
    /**
     * 
     * * 保存附件
     * 
     */
 
    public List<InputStream> saveAttachMent(Part part) throws Exception {
 
        List<InputStream> inputStreamList = new ArrayList<>();
        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 disposition = mPart.getDisposition();
 
                if ((disposition != null)
 
                        && ((disposition.equals(Part.ATTACHMENT)) || (disposition
 
                                .equals(Part.INLINE)))) {
 
                    fileName = mPart.getFileName();
 
                    if (fileName.toLowerCase().indexOf("gb2312") != -1) {
                        fileName = MimeUtility.decodeText(fileName);
                    }
                    inputStreamList.add(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);
                        inputStreamList.add(mPart.getInputStream());
                    }
                }
            }
 
        } else if (part.isMimeType("message/rfc822")) {
            saveAttachMent((Part) part.getContent());
        }
        return inputStreamList;
    }
 
    /**
     * 
     * 设置附件存放路径
     * 
     */
 
    public void setAttachPath(String attachPath) {
 
        this.saveAttachPath = attachPath;
 
    }
 
    /**
     * 
     * * 设置日期显示格式
     * 
     */
 
    public void setDateFormat(String format) throws Exception {
 
        this.dateFormat = format;
 
    }
 
    /**
     * 
     * * 获得附件存放路径
     * 
     */
 
    public String getAttachPath() {
 
        return saveAttachPath;
 
    }
 
    /**
     * 
     * * 真正的保存附件到指定目录里
     * 
     */
 
    private void saveFile(String fileName, InputStream in) throws Exception {
 
        String osName = System.getProperty("os.name");
 
        String storeDir = getAttachPath();
 
        String separator = "";
 
        if (osName == null) {
 
            osName = "";
 
        }
 
        if (osName.toLowerCase().indexOf("win") != -1) {
 
            separator = "\\";
 
            if (storeDir == null || storeDir.equals(""))
 
                storeDir = "c:\\tmp";
 
        } else {
 
            separator = "/";
 
            storeDir = "/tmp";
 
        }
 
        File storeFile = new File(storeDir + separator + fileName);
 
        // System.out.println("附件的保存地址: " + storeFile.toString());
 
        // for(int i=0;storefile.exists();i++){
 
        // storefile = new File(storedir+separator+fileName+i);
 
        // }
 
        BufferedOutputStream bos = null;
 
        BufferedInputStream bis = null;
 
        try {
 
            bos = new BufferedOutputStream(new FileOutputStream(storeFile));
 
            bis = new BufferedInputStream(in);
 
            int c;
 
            while ((c = bis.read()) != -1) {
 
                bos.write(c);
 
                bos.flush();
 
            }
 
        } catch (Exception exception) {
 
            exception.printStackTrace();
 
            throw new Exception("文件保存失败!");
 
        } finally {
 
            bos.close();
 
            bis.close();
 
        }
 
    }
 
}