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之类的代码,那要从数据库循环出数据该如何写呢,想要具体事例
展开
 我来答
芽儿灬
2011-06-24
知道答主
回答量:5
采纳率:0%
帮助的人:0
展开全部
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;
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式