I开发者_StackOverflows there some way to get proper mime type for .csv files to include in the attachment of my jsp page?
At the top of your JSP:
<% response.setHeader("Content-Type", "text/csv"); %>
Content-Type: text/csv
I开发者_StackOverflows there some way to get proper mime type for .csv files to include in the attachment of my jsp page?
At the top of your JSP:
<% response.setHeader("Content-Type", "text/csv"); %>
Content-Type: text/csv
精彩评论