Excel|web| Export Excel
A simple implementation of Web application export Excel Report
in Web applications, much of the data is often exported to Excel documents. Creating a real Excel document in a specific way is more complex and less useful. So it's often a simple way to save a report in HTML format and then open it in Excel. Implementation: The first step, using JSP to implement the HTML version of the report the second step, in the JSP page header set response contenttype for Excel format <% response.setcontenttype ("application/ VND.MS-EXCEL;CHARSET=GBK "); %> Chinese problems: View source code found in the JSP file written in Chinese as garbled, then in the JSP file head add a line <%@ page contenttype= "text/html; charset=gb2312 "%> See the source code to find the text is Chinese, but with Excel open as garbled then in
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.