Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The problem is, user clicks a button in JSP, which will export the displayed data. So what i am doing is, creating a temp. file and writing the contents in it [ resultSet >> xml >> csv ], and then writing the contents to ServletResponse. After closing the respons output stream, i try to delete the file, but every time it returns false.

code;

public static void writeFileContentToResponse ( HttpServletResponse response , String fileName ) throws IOException{

    	ServletOutputStream responseoutputStream = response.getOutputStream();
    	File file = new File(fileName);
    	if (file.exists()) {
    		file.deleteOnExit();

    		DataInputStream dis = new DataInputStream(new FileInputStream(
    				file));

    		response.setContentType("text/csv");
    		int size = (int) file.length();
    		response.setContentLength(size);
    		response.setHeader("Content-Disposition",
    				"attachment; filename=\"" + file.getName() + "\"");			
    		response.setHeader("Pragma", "public");
    		response.setHeader("Cache-control", "must-revalidate");

    		if (size > Integer.MAX_VALUE) {

    		}
    		byte[] bytes = new byte[size];

    		dis.read(bytes);
    		FileCopyUtils.copy(bytes, responseoutputStream );
    	}
    	responseoutputStream.flush();
    	responseoutputStream.close();
    	file.delete();
    }

i have used 'file.deleteOnExit();' and file.delete(); but none of them is working.

share|improve this question
can't you export to memory buffer and write its content directly to the output stream? – Boris Pavlović Aug 6 '09 at 12:24
CSV file is very huse, so it is not good to keep it in memory – Rakesh Juyal Aug 6 '09 at 12:32
s/huse/huge :D – Rakesh Juyal Aug 6 '09 at 12:33
Rakesh, you may want to try to boil this question down to what you are trying to do, ie. ask how to serve up a large result set as CSV from a web application, rather then how to delete the file. – James McMahon Aug 6 '09 at 12:40

8 Answers

file.deleteOnExit() isn't going to produce the result you want here - it's purpose is to delete the file when the JVM exits - if this is called from a servlet, that means to delete the file when the server shuts down.

As for why file.delete() isn't working - all I see in this code is reading from the file and writing to the servlet's output stream - is it possible when you wrote the data to the file that you left the file's input stream open? Files won't be deleted if they're currently in use.

Also, even though your method throws IOException you still need to clean up things if there's an exception while accessing the file - put the file operations in a try block, and put the stream.close() into a finally block.

share|improve this answer
even when server is shut down, the file still remains there – Rakesh Juyal Aug 6 '09 at 12:32
1  
Is this on windows? I found a bug report - bugs.sun.com/bugdatabase/view_bug.do?bug_id=4171239 - stating that on windows file.deleteOnExit() did not work if the file is still open when the JVM exits. Since file.delete() doesn't work - the file is still open in some way. I'm not sure about the status of this bug in the current JVM... it's marked as 'reported against' up to 1.3, but I don't see anything in the 'release fixed'... closed as a duplicate then, but don't see a fix in the bug it's a duplicate of either... – Nate Aug 6 '09 at 12:41

Don't create that file. Write your data directly from your resultset to your CSV responseoutputStream. That saves time, memory, diskspace and headache.

If you realy need it, try using File.createTempFile() method. These files will be deleted when your VM stops normaly if they haven't been deleted before.

share|improve this answer
1  
If this is on the server side those temp files could really build up as the JVM is always running. – James McMahon Aug 6 '09 at 12:32

I'm assuming you have some sort of concurrency issue going on here. Consider making this method non-static, and use a unique name for your temp file (like append the current time, or use a guid for a filename). Chances are that you're opening the file, then someone else opens it, so the first delete fails.

share|improve this answer

as I see it, you are not closing the DataInputStream dis - this results to the false status, when you do want to delete file. Also, you should handle the streams in try-catch-finally block and close them within finally. The code is a bit rough, but it is safe:

DataInputStream dis = null;
    try
    {
        dis = new DataInputStream(new FileInputStream(
                file));
        ... // your other code
    }
    catch(FileNotFoundException P_ex)
    {
        // catch only Exceptions you want, react to them
    }
    finally
    {
        if(dis != null)
        {
            try
            {
                dis.close();
            }
            catch (IOException P_ex) 
            {
                // handle exception, again react only to exceptions that must be reacted on
            }
        }
    }
share|improve this answer

How are you creating the file. You probably need to use createTempFile.

You should be able to delete a temporary file just fine (No need for deleteOnExit). Are you sure the file isn't in use, when you are trying to delete it? You should have one file per user request (That is another reason you should avoid temp files and store everything in memory).

share|improve this answer

you can try piped input and piped output stream. those buffers need two threads one to feed the pipe (exporter) and the other (servlet) to consume data from the pipe and write it to the response output stream

share|improve this answer

You really don't want to create a temporary file for a request. Keep the resulting CSV in memory if at all possible.

You may need to tie the writing of the file in directly with the output. So parse a row of the result set, write it out to response stream, parse the next row and so on. That way you only keep one row in memory at a time. Problem there is that the response could time out.

If you want a shortcut method, take a look at Display tag library. It makes it very easy to show a bunch of results in a table and then add pre-built export options to said table. CSV is one of those options.

share|improve this answer
actually we were using DisplayTag earlier, but now it is avoided because of size limitation. I can't have CSV in memory, this might be very huge. – Rakesh Juyal Aug 6 '09 at 12:31

You don't need a temporary file. The byte buffer which you're creating there based on the file size may also cause OutOfMemoryError. It's all plain inefficient.

Just write the data of the ResultSet immediately to the HTTP response while iterating over the rows. Basically: writer.write(resultSet.getString("columnname")). This way you don't need to write it to a temporary file or to gobble everything in Java's memory.

Further, most JDBC drivers will by default cache everything in Java's memory before giving anything to ResultSet#next(). This is also inefficient. You'd like to let it give the data immediately row-by-row by setting the Statement#setFetchSize(). How to do it properly depends on the JDBC driver used. In case of for example MySQL, you can read it up in its JDBC driver documentation.

Here's a kickoff example, assuming that you're using MySQL:

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    response.setContentType("text/csv");
    response.setCharacterEncoding("UTF-8");

    Connection connection = null;
    Statement statement = null;
    ResultSet resultSet = null;
    PrintWriter writer = response.getWriter();

    try {
        connection = database.getConnection();
        statement = connection.createStatement(ResultSet.TYPE_FORWARD_ONLY, ResultSet.CONCUR_READ_ONLY);
        statement.setFetchSize(Integer.MIN_VALUE);
        resultSet = statement.executeQuery("SELECT col1, col2, col3 FROM tbl");

        while (resultSet.next()) {
            writer.append(resultSet.getString("col1")).append(',');
            writer.append(resultSet.getString("col2")).append(',');
            writer.append(resultSet.getString("col3")).println();
            // Note: don't forget to escape quotes/commas as per RFC4130.
        }
    } catch (SQLException e) {
        throw new ServletException("Retrieving CSV rows from DB failed", e);
    } finally { 
        if (resultSet != null) try { resultSet.close; } catch (SQLException logOrIgnore) {}
        if (statement != null) try { statement.close; } catch (SQLException logOrIgnore) {}
        if (connection != null) try { connection.close; } catch (SQLException logOrIgnore) {}
    }
}

That's it. This way effectlvely only one database row is been kept in the memory all the time.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.