簡體   English   中英

JAVA MAIL API:無法將xls文件附加到郵件

[英]JAVA MAIL API : Unable to attach xls file to Mail

我下面的Java類必須使用Java郵件將文本文件內容和郵件以及附加的xls文件復制到收件人。

現在,我可以閱讀和郵寄文本文件的內容,但是無法附加xls文件。

以下是我的代碼段:

static void sendmail() throws IOException,     
MessagingException,AddressException,FileNotFoundException
   {

          DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy 
HH:mm:ss");
          Calendar cal = Calendar.getInstance();
            String to1=getOrderinfo.to1;
            String to2 = getOrderinfo.to2;
            String to3 = getOrderinfo.to3; 
            String to4 = getOrderinfo.to4;
            String from =getOrderinfo.from;
            String host = getOrderinfo.host;
            Properties properties = System.getProperties();
            properties.setProperty("mail.smtp.host", host);
            Session session = Session.getDefaultInstance(properties);
            MimeMessage message = new MimeMessage(session); 
             Multipart multipart = new MimeMultipart();



            String pathLogFile = "E:/car_failed_report/log.txt";

            try {

                    message.setFrom(new InternetAddress(from));   
                    message.addRecipient(Message.RecipientType.TO, new 
InternetAddress(to1));
                   message.setSubject(" CAR NOT YET INTEGRATED REPORT at 
: "+dateFormat.format(cal.getTime()));
                    StringBuffer sb = new StringBuffer();
                    FileInputStream fstream = new 
FileInputStream(pathLogFile);
                    BufferedReader br = new BufferedReader(new 
InputStreamReader(fstream));

                    String singleLine;
                    while ((singleLine = br.readLine()) != null) 
                    {

                        sb.append(singleLine + "<br>");
                       // CarParser1.sb1.append(singleLine +"<br>");
                    }
                    br.close();
                    String allLines;

                   allLines = sb.toString();


                    String allLines_html=" <html><head><title></title> 
</head>"
                            + "<body >"+allLines+"</body ></html>";
                  message.setContent(allLines_html, "text/html; 
charset=ISO-8859-1");

                 MimeBodyPart attachPart = new MimeBodyPart();
                File attachement = new File("E:\\car_failed_report
\\failed.xls");
                if (attachement.exists()) {
                    attachPart.attachFile(attachement);
                } else {
                    System.out.println("ERROR READING THE FILE");
                    throw new FileNotFoundException();
                }

                 Transport.send(message);



                System.out.println("Email Sent successfully....");


                System.out.println();

            } 
            catch(FileNotFoundException f1)
            {
                System.out.println("File not yet created..this is from 
mailer class");

                return;
            }
            catch (MessagingException mex) 
            {
                System.out.println("Invalid Email Address.please provide 
a valid email id to send with");
                mex.printStackTrace();


            }

任何人都可以幫助我附加xls文件嗎?

提前致謝。

您創建了帶有附件的正文部分,但未將其添加到郵件中。 替換以message.setContent開頭的代碼:

            MimeMultipart mp = new MimeMultipart();
            MimeBodyPart body = new MimeBodyPart();
            body.setText(allLines_html, "iso-8859-1", "html");
            mp.addBodyPart(body);

            MimeBodyPart attachPart = new MimeBodyPart();
            File attachement = new File("E:\\car_failed_report\\failed.xls");
            if (attachement.exists()) {
                attachPart.attachFile(attachement);
                mp.addBodyPart(attachPart);
            } else {
                System.out.println("ERROR READING THE FILE");
                throw new FileNotFoundException();
            }
            message.setContent(mp);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM