我的jsp中有一些表,我必须将它们导出到word文件,然后将其添加到.zip文件中。
我有这个代码来创建word文件,但我不知道如何将其添加到zip文件而不是直接下载。
String formName = "./test.doc";
File filepath = new File(formName);
files.add(filepath);
response.setContentType("application/vnd.ms-word");
response.setHeader("Content-Disposition", "filename=" + filepath);
有什么想法吗?
谢谢!