我遇到了与this完全相同的问题 并通过发布的解决方案,我能够解决我的问题。 但现在问题是,当收到附件时,没有名称。在我的方法中,我已经要求接收者的文件的电子邮件ID,主题,内容,文件名和字节[]。我传递的文件格式没有问题,但问题在于名称。收件人将“noname”作为文件名。我们如何指定我们选择的文件名。我作为参数传递的文件名没有得到反映。请建议。
我正在使用的代码是
File file = new File("D:/my docs/Jetty.pdf");
int len1 = (int)(file.length());
FileInputStream fis1 = null;
try {
fis1 = new FileInputStream(file);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
byte buf1[] = new byte[len1];
try {
fis1.read(buf1);
EmailServiceClient.sendEmailWithAttachment("xyz@gmail.com", "abc@gmail.com", "Hi", "PFA", "Jetty.pdf", buf1);
System.out.println("SENT");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我的电子邮件服务实现就在这里
public void sendEmailWithAttachment(String emailIdTo, String emailIdFrom, String subject, String content,
final String fileName, byte[] file) {
MimeMessage message = mailSender.createMimeMessage();
try {
MimeMessageHelper helper = new MimeMessageHelper(message, true);
helper.setTo(emailIdTo);
helper.setFrom(emailIdFrom);
helper.setSubject(subject);
helper.setText(content, true);
helper.addInline("attachment", new ByteArrayResource(file) {
@Override
public String getFilename() {
return fileName;
}
});
mailSender.send(message);
} catch (MessagingException e) {
throw new MailParseException(e);
}}
请有人帮忙解决这个问题
答案 0 :(得分:1)
从Spring文档我可以说内联元素除了contentId之外没有特殊名称。也许您想使用addAttachment方法添加附件?然后你可以为你的文件命名。