在 Mozilla 中打开 excel 文件时出现错误。它在 IE 中运行良好。我有以下代码:
String file="abc.xls";
response.setHeader("Content-disposition:", "attachment; filename="+file);
response.setContentType("application/vnd.ms-excel");
response.setCharacterEncoding("UTF-8");
请建议如何解决这个问题。
请帮忙。