java.nio.file.InvalidPathException:索引4处的非法char <:>:http:\ 182.18.177.27:78 \ PrepaidEMFiles \ invoice12.pdf

时间:2019-01-11 17:03:56

标签: java

在发送带有附件的电子邮件时,出现错误。它与本地系统文件位置(例如C://PrepaidEMFiles//invoice123.pdf)配合正常,但是当我使用(http://182.18.177.27:78/PrepaidEMFiles/invoice1547033786877.pdf)位置时,我得到了错误。下面是我的代码。

try{
 `enter code here`....

  String samplePdf = 
  "http://182.18.177.27:78/PrepaidEMFiles/invoice1547033786877.pdf";

   FileSystemResource file = new FileSystemResource(samplePdf); 
   helper.addAttachment(file.getFilename(), file);

  } catch (MessagingException e) {
   LOGGER.error("Exception in sending mail", e);
   exceptionHandlerDao.exceptionHandlineCode(e, "SENDING EMAIL FOR " + 
   inventoryName + " FOR RECHARGE A DEVICE", "");
   }

    sender.send(message);
    }

我尝试了多种方式来忽略“ \”,例如(

eg.http:\\\\182.18.177.27:78\\PrepaidEMFiles\\invoice1547033786877.pdf) but still getting the same error.Could someone please help me with that error.

提前谢谢!

我尝试了各种方法来获取带有URL url = inputstream示例的文件。但是我将二进制文件作为附件。仍然没有用。

完全错误:           java.nio.file.InvalidPathException:索引4处的非法char <:>:

      http:\182.18.177.27:78\PrepaidEMFiles\invoice1547033786877.pdf
     at 
       sun.nio.fs.WindowsPathParser.normalize(WindowsPathParser.java:182)
       at sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:153)
      at sun.nio.fs.WindowsPathParser.parse(WindowsPathParser.java:77)
      at sun.nio.fs.WindowsPath.parse(WindowsPath.java:94)
      at sun.nio.fs.WindowsFileSystem.getPath(WindowsFileSystem.java:255)
      at java.io.File.toPath(File.java:2234)
      at org.springframework.core.io.FileSystemResource.<init> 
     (FileSystemResource.java:82)
     at

我需要远程找到的pdf文件才能将其发送到电子邮件附件。

1 个答案:

答案 0 :(得分:1)

问题是您正在使用FileSystemResource,而这不在文件系统上。它是外部托管的URL。您可能应该使用URLResource而不是FileResource。

here documentation

中查看更多

URLResource应该能够理解您拥有的HTTP URL。