首先,如果我的英语不好,请原谅我。我使用ajax将数据发送到ExportServlet时遇到一些问题。
ExportServlet.java
public class ExportServlet extends HttpServlet {
private static final long serialVersionUID = 6715605810229670146L;
protected void doGet(HttpServletRequest req, HttpServletResponse res) throws ServletException, IOException {
String fileName = req.getParameter("filename");
//Create ZIP file
try {
res.setContentType("applicatin/zip");
res.setStatus(HttpServletResponse.SC_OK);
ZipOutputStream zos = new ZipOutputStream(res.getOutputStream());
//Create TXT file
zos.putNextEntry(new ZipEntry(fileName + ".txt"));
zos.write(getOutputData());
zos.closeEntry();
zos.close();
} catch (IOException e) {
e.printStackTrace();
}
}
private byte[] getOutputData() {
byte[] result = null;
String tmp = "Text file content";
result = tmp.getBytes();
return result;
}
}
上面的Java代码绝对完美。
然后,我有了将数据发送到我的ExportServlet的ajax代码(我以文件名为例):
//Post data to ExportServlet
$.ajax({
type: 'post',
url: '/export.zip',
data: "filename = myFile",
success:function(data){alert(data);},
error:function(){alert('error');}
});
问题是当ajax函数被触发时,我得到一个错误回调。我还有一个链接可下载ExportServlet生成的ZIP文件:
<a href="/export.zip">Download file</a>
确实,当我单击链接时,我得到的ZIP文件中包含“ null.txt”。我怎样才能解决这个问题?
在此先感谢!
最佳答案
尝试这个:
<a href="javascript:;" onclick="downloadFile();">Download file</a>
<div style="display: none;">
<iframe id="downloadFileFrame"></iframe>
</div>
function downloadFile() {
$('#downloadFileFrame').attr('src','/export.zip?filename=myFile');
return false;
}