jsp导出word、excel

jsp导出word、excel

把对象或者列表传到Jsp页面上;

头部加入:word为<%@ page contentType="application/vnd.ms-word; charset=gb2312" %>,Excel为<%@ page contentType="application/msexcel; charset=gb2312" %>

加入此句,给导出的文件命名:<%response.setHeader("Content-disposition","attachment; filename="+"txl"+".xls");%>或者response.setHeader("Content-disposition","attachment; filename=print_tmp.doc");

即可,注意的是,导出的文件命名用中文出错,对word排版最好用div,用table即使border=0在word上还是有虚框出来。

你可能感兴趣的:(jsp,Excel)