ดาวน์โหลดไฟล์แนบโดยใช้ Java Mail


96

ตอนนี้ฉันได้ดาวน์โหลดข้อความทั้งหมดและเก็บไว้ที่

Message[] temp;

ฉันจะรับรายชื่อไฟล์แนบสำหรับแต่ละข้อความถึงได้อย่างไร

List<File> attachments;

หมายเหตุ:ไม่มี libs ของบุคคลที่สามโปรดเพียงแค่ JavaMail

คำตอบ:


111

โดยไม่มีข้อยกเว้นในการจัดการ แต่ต่อไปนี้:

List<File> attachments = new ArrayList<File>();
for (Message message : temp) {
    Multipart multipart = (Multipart) message.getContent();

    for (int i = 0; i < multipart.getCount(); i++) {
        BodyPart bodyPart = multipart.getBodyPart(i);
        if(!Part.ATTACHMENT.equalsIgnoreCase(bodyPart.getDisposition()) &&
               StringUtils.isBlank(bodyPart.getFileName())) {
            continue; // dealing with attachments only
        } 
        InputStream is = bodyPart.getInputStream();
        // -- EDIT -- SECURITY ISSUE --
        // do not do this in production code -- a malicious email can easily contain this filename: "../etc/passwd", or any other path: They can overwrite _ANY_ file on the system that this code has write access to!
//      File f = new File("/tmp/" + bodyPart.getFileName());
        FileOutputStream fos = new FileOutputStream(f);
        byte[] buf = new byte[4096];
        int bytesRead;
        while((bytesRead = is.read(buf))!=-1) {
            fos.write(buf, 0, bytesRead);
        }
        fos.close();
        attachments.add(f);
    }
}

2
แต่เดี๋ยวก่อนเราไม่ควรตรวจสอบว่า (bodyPart.getDisposition () == Part.ATTACHMENT) {} ก่อนบันทึกไฟล์เพื่อไม่ให้บันทึกเนื้อหาของอีเมลหรือไม่
folone

8
StringUtils.isBlank () จะอ่านได้เป็นธรรมชาติมากกว่าการใช้! StringUtils.isNotBlank หรือไม่?
Kuchi

คำตอบนี้ไม่ถือว่าไฟล์แนบหลายส่วนที่ซ้อนกัน (เช่น Thunderbird ใช้กันทั่วไป) หากต้องการค้นหาไฟล์แนบหลายส่วนที่ซ้อนกันโปรดดูคำตอบของ @mefi
Ruslan Stelmachenko

3
ตัวอย่างข้อมูลเป็นการละเมิดความปลอดภัยที่รอให้เกิดขึ้น ฉันได้แก้ไขตัวอย่างข้อมูลเพื่อเน้นสิ่งนี้
rzwitserloot

1
แน่นอนและขอบคุณสำหรับสิ่งนั้น ตัวอย่างนี้เป็นเพียงการแสดงให้เห็นว่าสามารถทำได้โดยธรรมชาติแล้วไม่ใช่รหัสการผลิต
David Rabinowitz

33

คำถามเก่ามาก แต่อาจจะช่วยใครบางคนได้ ฉันต้องการขยายคำตอบของ David Rabinowitz

if(!Part.ATTACHMENT.equalsIgnoreCase(bodyPart.getDisposition()))

ไม่ควรส่งคืน atachments ทั้งหมดตามที่คุณคาดหวังเนื่องจากคุณสามารถมีเมลที่ส่วนผสมอยู่โดยไม่มีการจัดการที่กำหนดไว้

   ----boundary_328630_1e15ac03-e817-4763-af99-d4b23cfdb600
Content-Type: application/octet-stream;
    name="00000000009661222736_236225959_20130731-7.txt"
Content-Transfer-Encoding: base64

ดังนั้นในกรณีนี้คุณสามารถตรวจสอบชื่อไฟล์ได้ แบบนี้:

if (!Part.ATTACHMENT.equalsIgnoreCase(part.getDisposition()) && StringUtils.isBlank(part.getFileName())) {...}

แก้ไข

มีรหัสการทำงานทั้งหมดโดยใช้เงื่อนไขที่อธิบายไว้ด้านบน .. เนื่องจากแต่ละส่วนสามารถห่อหุ้มส่วนอื่นได้และควรแนบไฟล์แนบการเรียกซ้ำจึงใช้เพื่อสำรวจผ่านทุกส่วน

public List<InputStream> getAttachments(Message message) throws Exception {
    Object content = message.getContent();
    if (content instanceof String)
        return null;        

    if (content instanceof Multipart) {
        Multipart multipart = (Multipart) content;
        List<InputStream> result = new ArrayList<InputStream>();

        for (int i = 0; i < multipart.getCount(); i++) {
            result.addAll(getAttachments(multipart.getBodyPart(i)));
        }
        return result;

    }
    return null;
}

private List<InputStream> getAttachments(BodyPart part) throws Exception {
    List<InputStream> result = new ArrayList<InputStream>();
    Object content = part.getContent();
    if (content instanceof InputStream || content instanceof String) {
        if (Part.ATTACHMENT.equalsIgnoreCase(part.getDisposition()) || StringUtils.isNotBlank(part.getFileName())) {
            result.add(part.getInputStream());
            return result;
        } else {
            return new ArrayList<InputStream>();
        }
    }

    if (content instanceof Multipart) {
            Multipart multipart = (Multipart) content;
            for (int i = 0; i < multipart.getCount(); i++) {
                BodyPart bodyPart = multipart.getBodyPart(i);
                result.addAll(getAttachments(bodyPart));
            }
    }
    return result;
}

นิพจน์จะตรวจสอบชื่อไฟล์ว่างหรือnull. ถูกต้องหรือไม่
Keerthivasan

ปลาหมึก: ใช่ ตรวจสอบว่า CharSequence ไม่ว่างเปล่า ("") ไม่ใช่ null และไม่ใช่ช่องว่างเท่านั้น
mefi

คุณสามารถบอกวิธีการแปลง List <InputStream> เป็น List <File> ได้อย่างไร
kumuda

kumunda: สวัสดีคุณควรทำซ้ำรายการนั้นและใช้ org.apache.commons.io.FileUtils.copyInputStreamToFile (ต้นทาง InputStream ปลายทางของไฟล์) และแต่ละไฟล์จะเพิ่มไปยังคอลเล็กชันอื่น หากคุณใช้ Guava ให้ตรวจสอบ Lists.transform (... ) ซึ่งคุณสามารถใช้ instad ของการวนซ้ำได้ (ขึ้นอยู่กับวิธีที่คุณต้องการเริ่มต้นอินสแตนซ์ไฟล์แต่ละรายการ)
mefi

9

ประหยัดเวลาสำหรับรหัสที่คุณบันทึกไฟล์แนบ:

ด้วย javax mail เวอร์ชัน1.4และหลังจากนั้นคุณสามารถพูดได้

// SECURITY LEAK - do not do this! Do not trust the 'getFileName' input. Imagine it is: "../etc/passwd", for example.
// bodyPart.saveFile("/tmp/" + bodyPart.getFileName());

แทน

    InputStream is = bodyPart.getInputStream();
    File f = new File("/tmp/" + bodyPart.getFileName());
    FileOutputStream fos = new FileOutputStream(f);
    byte[] buf = new byte[4096];
    int bytesRead;
    while((bytesRead = is.read(buf))!=-1) {
        fos.write(buf, 0, bytesRead);
    }
    fos.close();

3
เห็นได้ชัดว่า bodyPartควรแปลงเป็นครั้งแรกMimeBodyPartเช่น:((MimeBodyPart) bodyPart).saveFile("/tmp/" + bodyPart.getFileName());
yair

5

คุณสามารถใช้ Apache Commons Mail API MimeMessageParser - getAttachmentList ()พร้อมกับ Commons IO และ Commons Lang

MimeMessageParser parser = ....
parser.parse();
for(DataSource dataSource : parser.getAttachmentList()) {

    if (StringUtils.isNotBlank(dataSource.getName())) {}

        //use apache commons IOUtils to save attachments
        IOUtils.copy(dataSource.getInputStream(), ..dataSource.getName()...)
    } else {
        //handle how you would want attachments without file names
        //ex. mails within emails have no file name
    }
}
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.