首先,如果我的英语不好,请原谅我。我在使用 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 代码绝对完美。
然后我有我的 ajax 代码将数据发送到我的 ExportServlet(我以文件名为例):
//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>
事实上,当我单击链接时,我会得到带有“null.txt”的 ZIP 文件。我怎样才能解决这个问题?
提前非常感谢!