您好我写了下面的Java代码,将文件作为附件发送电子邮件。如果我提供示例文件路径,它工作正常。但是,我希望它采用用户在前端浏览的文件路径
//code to attach the file
MimeBodyPart messageBodyPart = new MimeBodyPart();
Multipart multipart = new MimeMultipart();
messageBodyPart.setText(sb.toString());
MimeBodyPart messageBodyPart2 = new MimeBodyPart();
//String filename = filePath;
String filename = "C:/Users/S.Mandava/Documents/ContactusAction.java";
DataSource source = new FileDataSource(filename);
messageBodyPart2.setDataHandler(new DataHandler(source));
messageBodyPart2.setFileName(filename);
multipart.addBodyPart(messageBodyPart);
multipart.addBodyPart(messageBodyPart2);
msg.setContent(multipart);
System.out.println("Attaching the file");
Transport.send(msg);
表格示例, 我希望系统在用户点击提交时获取以下表单中上传的文件路径,并且该文件应作为电子邮件中的附件发送
<form >
<input type ="file"/ id="multiple_files" name="multiple_files" multiple><br/>
<button>Submit</button>
</form>
我该怎么办?我想在前端使用JSP和JavaScript,在后端使用Java。我很难获得文件路径。
答案 0 :(得分:0)
正如@Rishal_dev_singh所说,搜索示例,谷歌是你的朋友......你做的是一个InputStream,你没有定义路径