1

我在 Glassfish 中运行的无状态 EJB 中有以下功能。它所做的只是将一些数据写入文件。该函数的第一部分只是创建文件需要去的路径。第二部分实际写入文件。

private boolean createFile(String companyName, String fileName, byte[] data)
{
    logger.log(Level.FINEST, "Creating file: {0} for company {1}", new Object[]{fileName, companyName});
    File companyFileDir = new File(LOCAL_FILE_DIR, companyName);
    if(companyFileDir.exists() == false)
    {
        boolean createFileDir = companyFileDir.mkdirs();
        if(createFileDir == false)
        {
            logger.log(Level.WARNING, "Could not create directory to place file in");
            return false;
        }
    }
    File newFile = new File(companyFileDir, fileName);
    try 
    {
        FileOutputStream fileWriter = new FileOutputStream(newFile);
        fileWriter.write(data);
    } 
    catch(IOException e)
    {
        logger.log(Level.SEVERE,"Could not write file to disk",e);
        return false;
    }
    logger.log(Level.FINEST,"File successfully written to file");
    return true;
}

这段代码执行后我得到的输出是:

WARNING: Could not create directory to place file in

所以很明显 Glassfish 不能创建这个目录。我假设这与权限有关。谁能给我一个方向,看看这里可能出了什么问题?

我在 Ubuntu 12 上的 Glassfish 3.12 上运行它

4

1 回答 1

0

不同之处: 1)比较规范:(21.1.2 编程限制)企业 bean 不得使用 java.io 包来尝试访问文件系统中的文件和目录。我确定 GF 没有强制执行此操作,但您应该意识到这一点。

2)代码本身很好。在 LOCAL_FILE_DIR 上尝试 chmod +777 以了解它是否与一般权利有关......

希望有帮助...

于 2012-06-29T10:21:38.643 回答