本文介紹了在Sendmail中從本地文件路徑添加附件的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在嘗試將本地文件附加到SendGrid中路徑/Users/david/Desktop/screenshot5.png
。
Mail mail = new Mail(from, subject, to, message);
// add an attachment
Attachments attachments = new Attachments();
Base64 x = new Base64();
String encodedString = x.encodeAsString("/Users/david/Desktop/screenshot5.png");
attachments.setContent(encodedString);
attachments.setDisposition("attachment");
attachments.setFilename("screenshot5.png");
attachments.setType("image/png");
mail.addAttachments(attachments);
執行此操作的正確方法是什么?
推薦答案
您添加了文件路徑。
您應該改為添加文件內容:
Mail mail = new Mail(from, subject, to, message);
// add an attachment
Attachments attachments = new Attachments();
File file = new File("/Users/david/Desktop/screenshot5.png");
byte[] fileContent = Files.readAllBytes(file.toPath());
String encodedString = Base64.getEncoder().encodeToString(fileContent);
attachments.setContent(encodedString);
attachments.setDisposition("attachment");
attachments.setFilename("screenshot5.png");
attachments.setType("image/png");
mail.addAttachments(attachments);
}
這篇關于在Sendmail中從本地文件路徑添加附件的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,