您的位置:首页 > 其它

如何下载自定义类型文件。

2011-01-15 13:33 316 查看
// Set the headers.
res.setContentType("application/x-download");

//这里如果你要下载的是rar类型的文件,像下面这样设置就行了

res.setContentType("application/x-rar");
res.setHeader("Content-Disposition", "attachment; filename=" + rar.rar);

// Send the file.
OutputStream out = res.getOutputStream(  );
returnFile(filename, out);  // Shown earlier in the chapter
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐