我正在发送带有内联图片的邮件,但问题是它给了我一个错误FileNotFound
我正在使用正确的路径,但仍然会出错,任何人都可以告诉我哪里错了?
代码
public void forgotPasswordMail(String email,String token)
{
String to = email;
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", host);
props.put("mail.smtp.port", "587");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(from));
message.setSubject("Reset Password");
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(to));
MimeMultipart multipart = new MimeMultipart("related");
BodyPart messageBodyPart = new MimeBodyPart();
String htmlText = //"<img src=\"cid:image\"> " +
"<html><head><style>h1 {background-color: #FFF100;padding: 15px; text-indent: 40px;} " +
"p {text-indent: 60px;}</style></head><body><h1>Forgot password request</h1> " +
"<p> Please click on the following link to set new password</p>" +
"<p>" + frontendUrl+"resetForgottonPassword/"+token+"</p></div></body></html>";
messageBodyPart.setContent(htmlText, "text/html");
// add it
multipart.addBodyPart(messageBodyPart);
messageBodyPart = new MimeBodyPart();
DataSource fds = new FileDataSource(
"/home/tahir/sportsacademy-backend/assets/Logo.png");
messageBodyPart.setFileName("logo.png");
messageBodyPart.setDataHandler(new DataHandler(fds));
messageBodyPart.setHeader("Content-ID", "<image>");}
multipart.addBodyPart(messageBodyPart);
message.setContent(multipart);
Transport.send(message);
System.out.println("Sent message successfully....");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
并且文件也有读写权限
文件位置
答案 0 :(得分:0)
有多种原因导致这种情况,但我猜测问题是您在文件系统位置查找文件,并且您的程序在根文件夹不同的Web上下文中运行。如果您正在创建Web应用程序,即使您在/ home文件夹中进行开发,它也会在servlet容器提供的Web上下文中运行,或者使用嵌入式servlet容器在IDE中运行。实际的文件夹结构有点不同。这是因为在共享的Web应用程序环境中存在封装,每个应用程序只能访问属于它的文件(否则您可能能够修改不属于您的文件)。
因此,为了检查并且您是否在Web环境中运行,您可以通过在servlet上下文中调用getRealPath(&#34; /&#34;)方法来检查实际文件夹,该方法显示实际的文件系统路径。但基本上您需要使用Web应用程序上下文中的相对路径而不是文件系统来访问资源。
答案 1 :(得分:0)
可能是因为您使用主文件夹,文件的路径不正确。你查过这篇文章了:Accessing "~" (user home) from Java in Linux?
还有另一件事;你结束try块,然后添加一些代码,然后启动catch块。这不起作用,因为捕获必须在尝试后立即开始(但可能是复制错误)。