0

我有独立的应用程序,它有一个发送电子邮件的模块。此应用程序打包为包含所有资源文件(包括图像)的可执行 JAR。

我正在使用 spring 发送电子邮件,其中包含以下内联代码:

Spring 代码正在使用org.springframework.core.io.FileSystemResource

//IN-LINE ATTCHEMENTS
                if (null != msg.getInlineAttachments() && msg.getInlineAttachments().size() > 0) {
                    for (Map.Entry<String, File> e : msg.getInlineAttachments().entrySet()) {
                        if (log.isTraceEnabled()) {
                            log.trace("Conntent-ID:" + e.getKey() + ", Resource:" + e.getValue());
                        }
                        try {
                            helper.addInline(e.getKey(), new FileSystemResource(e.getValue()));
                        } catch (Exception e1) {
                            log.error(e1);
                        }
                    }
                }

使用以下代码将文件图像传递给上述代码:

    ClassPathResource res = new ClassPathResource("./images/" + name);
    if (log.isTraceEnabled()) {
        log.trace(res.getFile().getAbsolutePath());
    }
    file = res.getFile();

注意: 应用程序在eclipse的开发环境中执行时工作正常,因为它是分解格式,非jar。

例外:

    java.io.FileNotFoundException: class path resource [images/app_logo.png] 
cannot be resolved to absolute file path because it does not reside in the file system:
 jar:file:/C:/TEMP/app-1.0/app-1.0.jar!/images/app_logo.png
4

2 回答 2

1

您需要将图像作为流而不是文件来处理。文件是仅在文件系统中有效的概念,但您正在尝试访问不是文件系统的 Jar 内部的某些内容。

于 2013-02-22T18:44:41.833 回答
0

Only option left out is copy image files into temp folder, and reference from there...

于 2013-02-22T19:22:57.787 回答