jsp word 导出问题
现在做一个生成报告的系统,有一个,报告的WORD导出,有一个地方搞不定了,<tablewidth="100%"border="0"cellspacing="0"cellp...
现在做一个生成报告的系统,有一个,报告的WORD 导出,有一个地方搞不定了,
<table width="100%" border="0" cellspacing="0" cellpadding="0" style='border-color:white;border:none'>
JSP中有一个table 但我的boder 都设置成0了,可到WORD导出的时候,总有很多边框。这些边框应该怎么去掉呀。急啊!
如果导出时不要写html的table之类的代码,那要从数据库循环出数据该如何写呢,想要具体事例 展开
<table width="100%" border="0" cellspacing="0" cellpadding="0" style='border-color:white;border:none'>
JSP中有一个table 但我的boder 都设置成0了,可到WORD导出的时候,总有很多边框。这些边框应该怎么去掉呀。急啊!
如果导出时不要写html的table之类的代码,那要从数据库循环出数据该如何写呢,想要具体事例 展开
展开全部
jsp输出word
在页面直接打开word。
在Action中写
response.reset();
response.setContentType("application/msword;charset=GBK");
response.setHeader("Content-Disposition", "inline;filename=temp.doc");
response.getOutputStream().write(document.getContent());
response.getOutputStream().flush();
response.getOutputStream().close();
return null;
在页面时下载word。
在Action中写
response.reset();
response.setContentType("application/x-download;charset=GBK");
response.setHeader("Content-Disposition", "attachment;filename=temp.doc");
response.getOutputStream().write(document.getContent());
response.getOutputStream().flush();
response.getOutputStream().close();
return null;
在页面直接打开word。
在Action中写
response.reset();
response.setContentType("application/msword;charset=GBK");
response.setHeader("Content-Disposition", "inline;filename=temp.doc");
response.getOutputStream().write(document.getContent());
response.getOutputStream().flush();
response.getOutputStream().close();
return null;
在页面时下载word。
在Action中写
response.reset();
response.setContentType("application/x-download;charset=GBK");
response.setHeader("Content-Disposition", "attachment;filename=temp.doc");
response.getOutputStream().write(document.getContent());
response.getOutputStream().flush();
response.getOutputStream().close();
return null;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询