0

我在 Windows 上的 Tomcat 7.0.42 上有这个 Web 应用程序,它被指示在本地映射的网络目录中复制一个文件,例如N:\some\directory\file.txt,但它不能这样做。

为了定义输出文件,我使用了 URI 语法file:///n:/some/directory/file.txt,但两者都Files.copy抛出FileUtils.copyFileIOException一些不太有用的错误消息:

URI desturi = new URI(srcpath);
File dest = new File(desturi);
Files.copy(source.toPath(), dest.toPath());
// error message: "c:\local\dir\file.txt -> n:\some\directory\file.txt"

FileUtils.copyFile(source, dest);
// error message: "Destination 'N:\some\directory' directory cannot be created"

一些附加信息:

  • 当然我可以在那个目录上读写
  • 可执行的 .jar 可以毫无问题地复制文件
  • 如果目的地在本地驱动器中,一切都很好
  • 我不认为安全管理器已加载,但我该如何检查呢?
  • Tomcat 以我用来登录的同一用户启动(例如user.nameUSERNAME环境变量相同)

我没主意了...

更新堆栈跟踪的片段。对于Files.copy

java.nio.file.NoSuchFileException: c:\local\dir\file.txt -> n:\some\directory\file.txt
    at sun.nio.fs.WindowsException.translateToIOException(Unknown Source)
    at sun.nio.fs.WindowsException.rethrowAsIOException(Unknown Source)
    at sun.nio.fs.WindowsFileCopy.copy(Unknown Source)
    at sun.nio.fs.WindowsFileSystemProvider.copy(Unknown Source)
    at java.nio.file.Files.copy(Unknown Source)
    at it.augea.print.server.MyClass.copyFileToPath(MyClass.java:886)
    at it.augea.print.server.MyServlet.doPost(MyServlet.java:126)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)

对于FileUtils.copyFile

java.io.IOException: Destination 'N:\some\directory' directory cannot be created
    at org.apache.commons.io.FileUtils.copyFile(FileUtils.java:1015)
    at org.apache.commons.io.FileUtils.copyFile(FileUtils.java:968)
    at it.augea.print.server.MyClass.copyFileToPath(MyClass.java:886)
    at it.augea.print.server.MyServlet.doPost(MyServlet.java:126)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:647)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:728)

顺便说一下,Apache Commons.io 是 v2.2。查看源代码,这些是涉及的行:

File parentFile = destFile.getParentFile();
if (parentFile != null)
    if (!parentFile.mkdirs() && !parentFile.isDirectory())
        throw new IOException("Destination '" + parentFile + "' directory cannot be created");
4

2 回答 2

1

当 Tomcat(或任何其他程序)作为 Windows 服务运行时,它在服务帐户下运行,并且这些帐户默认情况下不能访问映射驱动器(或者如果内存正确地为我提供任何网络路径)。Tomcat 看不到 N: 驱动器,因此任何写入它的尝试都会失败。

有几种可能的解决方案。我的建议是为 Tomcat 创建一个域帐户以在该帐户下运行,该帐户具有以下必要权限:a)在运行它的机器上作为服务运行,b)在网络上需要写入的位置。最后,使用 UNC 路径 //machinename/sharename/path/in/share 而不是映射驱动器,你应该很高兴。

于 2013-11-09T18:47:03.300 回答
0

JVM 无法为要复制的文件创建文件夹。

检查JVM是否可以访问它。

于 2013-10-29T12:08:31.303 回答