获取 Tomcat 中资源的真实文件路径

发布于 2024-12-10 15:43:01 字数 262 浏览 0 评论 0原文

在 Tomcat 7 中的 Web 应用程序中,我使用 servletContext.getResource("file.xml") 获取应用程序中的资源。这会返回 jndi:/localhost/app/file.xml 形式的 URL。

但是,因为我需要将此文件传递给一个只能接受真实文件路径的库(我认为它有一个嵌入式 Ruby 脚本),所以 URL 不起作用。

有没有办法获取真实的文件路径?我知道这将使应用程序无法从 WAR 中运行,但没关系。

In my web application in Tomcat 7, I get a resource in the app using servletContext.getResource("file.xml"). This returns an URL in the form jndi:/localhost/app/file.xml.

However, because I need to pass this file to a library which can only accept real file paths (it has an embedded Ruby script, I think) that URL won't do.

Is there a way to get the real file path? I know that will make the application unable to ne run from a WAR, but that's ok.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初熏 2024-12-17 15:43:01

我有一个非常肮脏的解决方法:

        // get resource
        URL resU = servletContext.getResource("style.less");

        // get scratch dir
        File workDir = (File) servletContext.getAttribute("javax.servlet.context.tempdir");

        // copy resource to scratch file
        File newFile = new File(workDir, "style.less");
        Files.write(Resources.toByteArray(resU), newFile); // Google Guava

我应该能够通过一些缓存/校验和来加快速度,但这并不漂亮。

I have a very dirty workaround:

        // get resource
        URL resU = servletContext.getResource("style.less");

        // get scratch dir
        File workDir = (File) servletContext.getAttribute("javax.servlet.context.tempdir");

        // copy resource to scratch file
        File newFile = new File(workDir, "style.less");
        Files.write(Resources.toByteArray(resU), newFile); // Google Guava

I should be able to speed this up with some caching/checksumming, but it's not pretty.

彻夜缠绵 2024-12-17 15:43:01

我会使用 File#createTempFile()

File file = File.createTempFile("style", ".less");
// ...

I'd use File#createTempFile().

File file = File.createTempFile("style", ".less");
// ...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文