Tomcat创建0字节文件

时间:2010-07-01 11:04:51

标签: java selenium tomcat5.5

我在java中有一个非常简单的文件上传机制。我只是把文件保存在服务器上。我正在用selenium测试这个简单的代码,当在selenium测试中发生超时时,tomcat会在tomcat_home / work / Catalina / localhost / uploadServlet /目录下创建0字节文件作为MultiPart *文件。它创建了数千个文件,直到设备上没有剩余磁盘空间。什么可能导致这个问题?我怎么解决这个问题?有没有人对此有所了解?

我的环境是:Ubuntu - 8.04服务器,apache tomcat - 5.5.29,sun java 1.6

谢谢,

以下是我使用的代码段

    String strFileName = request.getParameter("FileName");
    String strPath = request.getParameter("Path");
    File fFile = (File) request.getAttribute("Content");

    int index = strPath.length() - 1; 
    if (strPath.charAt(index) != '/') {
        strPath += "/";
    }
    if (! new File(strPath).exists()) {
        new File(strPath).mkdirs();
    }
    File file = new File(strPath + strFileName);
    FileOutputStream fileOutputStream = new FileOutputStream(file);
    FileInputStream fileInputStream = new FileInputStream(fFile);

    byte[] bBuf = new byte[1024];

    int iBufLen = 0;
    int iReadLen = 1024;
    int iTotelLen = 0;
    /*read 1024 bytes at a time*/
    while ((iBufLen = fileInputStream.read(bBuf)) != -1) {
        fileOutputStream.write(bBuf);
        fileOutputStream.flush();
        iTotelLen += iBufLen;
        if (fileInputStream.available() < iReadLen) {
            iReadLen = fileInputStream.available();
            break;
        }
    }

    byte[] tempbBuf = new byte[iReadLen];
    fileInputStream.read(tempbBuf, 0, iReadLen);

    fileOutputStream.write(tempbBuf);

    fileOutputStream.close();
    fileInputStream.close();

    if (fFile.exists()) {
        fFile.delete();
    }

2 个答案:

答案 0 :(得分:1)

我使用了apache commons file upload类,我删除了finally部分中的临时文件。这个实现解决了这个问题。

答案 1 :(得分:0)

在此代码中间是否可能发生某种异常?最好关闭finally块中的流。