没啥好说的。关键代码:
// Set the headers. res.setContentType("application/x-download");
res.setHeader("Content-Disposition", "attachment; filename=" + filename);
// Send the file. OutputStream out = res.getOutputStream( );
returnFile(filename, out); // Shown earlier in the chapter