Ответ 1
Имя файла должно быть строкой . (Согласно Раздел 19.5.1 RFC 2616)
response.setHeader("Content-Disposition","attachment; filename=\"" + filename + "\"");
Я использую следующий класс (упрощенный ради понимания) для загрузки изображений в веб-приложении struts. Он отлично работает в каждом браузере, но firefox, который сокращает имена, содержащие пробелы. Это означает: файл с пробелами .pdf загружается в firefox как: файл, а в chrome IE7 IE6 загружается как файл с пробелами .pdf.
public class Download extends Action {
private static final int BUFFER_SIZE = 4096;
public ActionForward execute(ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response) throws Exception {
String filename = "file with spaces.pdf";
File file = ... // variable containing the file;
response.setStatus(HttpServletResponse.SC_OK);
response.setContentType(getMimeType(request, file));
response.setHeader("Content-Type", getMimeType(request, file));
response.setHeader("Content-Disposition","attachment; filename="+ filename);
InputStream is = new FileInputStream(file);
sendFile(is, response);
return null;
}
protected String getMimeType(HttpServletRequest request, File file) {
ServletContext application = super.servlet.getServletContext();
return application.getMimeType(file.getName());
}
protected void sendFile(InputStream is, HttpServletResponse response) throws IOException {
BufferedInputStream in = null;
try {
int count;
byte[] buffer = new byte[BUFFER_SIZE];
in = new BufferedInputStream(is);
ServletOutputStream out = response.getOutputStream();
while(-1 != (count = in.read(buffer)))
out.write(buffer, 0, count);
out.flush();
} catch (IOException ioe) {
System.err.println("IOException in Download::sendFile");
ioe.printStackTrace();
} finally {
if (in != null) {
try {
in.close();
} catch (IOException ioe) { ioe.printStackTrace(); }
}
}
}
}
Кто-нибудь знает, что здесь происходит? Заметьте, что я использую firefox 3.0.3 под Windows Vista.
Имя файла должно быть строкой . (Согласно Раздел 19.5.1 RFC 2616)
response.setHeader("Content-Disposition","attachment; filename=\"" + filename + "\"");
URLEncode имя файла?
Или, по крайней мере, замените %20 символом пробела.
(я не знаю, будет ли это работать, но попробуйте)
Вы пробовали просто помещать кавычки вокруг имени файла?
Это функция безопасности firefox 3, я полагаю.
Здесь мы идем
http://support.mozilla.com/tiki-view_forum_thread.php?locale=no&forumId=1&comments_parentId=91513
Это другое, но может помочь:)
Enjoy