response设置
Posted shihx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了response设置相关的知识,希望对你有一定的参考价值。
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");//.xlsx格式
// response.setContentType("application/application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=UTF-8");
// response.setContentType("application/vnd.ms-excel");//xls格式
// response.setContentType("application/octet-stream;charset=UTF-8;");
// response.setHeader("Pragma", "no-cache");
// response.setHeader("Cache-Control", "no-cache");
// response.setDateHeader("Expires", 0);
// response.setContentType("application/octet-stream");
// response.setCharacterEncoding("utf-8");
// 这里URLEncoder.encode可以防止中文乱码
response.setCharacterEncoding("utf-8");
response.setContentType("application/json;charset=utf-8");
以上是关于response设置的主要内容,如果未能解决你的问题,请参考以下文章