摘要:http://www.cnblogs.com/yuepeng/archive/2013/04/01/2992097.html
阅读全文
摘要:http://blog.csdn.net/kingviker/article/details/7476403
阅读全文
摘要:response.setContentType("text/plain; charset=utf-8"); PrintWriter pw = response.getWriter(); response.setContentType一定要放在response.getWriter()的前边。
阅读全文
摘要:使用jsp实现word、excel格式报表打印作者:丁丁出处:博客2010-12-21 07:25 因为ms word和excel的文档都支持html文本格式,因此可以先用word或excel做好模版,另存为Web页,然后将该html改成jsp,将数据部分动态填入即可,不用很辛苦的调整格式 word页面只要在jsp头设置如下指令:以下是代码片段: %@page contentType="application/msword;charset=GBK" % excel如下:以下是代码片段: %@page contentType="application/vnd.ms-
阅读全文
摘要:<%@ page contentType="application/vnd.ms-word; charset=utf-8"%><%@ page pageEncoding="utf-8"%> <% String fileName = "jsp导出word.doc"; //对中文文件名编码 //fileName = URLEncoder.encode(fileName, "utf-8"); byte[] yte = fileName.getBytes("GB2312")
阅读全文
摘要:https://forums.oracle.com/forums/thread.jspa?threadID=1396436&tstart=2244
阅读全文
摘要:自定义标签TLD文件中,rtexprvalue属性到底什么意思
阅读全文