其他分享
首页 > 其他分享> > 已解决No converter for XXX with preset Content-Type ‘application/vnd.ms-excel;charset=utf-8‘

已解决No converter for XXX with preset Content-Type ‘application/vnd.ms-excel;charset=utf-8‘

作者:互联网

原文链接: https://blog.csdn.net/qq_42651201/article/details/120710224

业务场景:
导出excel、pdf文件后台报异常,但是文件可以正常导出和查看。

解决办法:
controller层返回值改为void

过程:
起因是导出excel文件,发现下载的excel文件无法正常打开,总是提示文件损坏,需要修复,于是在代码中加入了以下代码

//2007版本excel导出
response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
1
2
文件可以正常打开了,内容也没问题,但是发现后台报错

exception [No converter for [class java.util.HashMap] with preset Content-Type 'vnd.openxmlformats-officedocument.spreadsheetml.sheet;charset=utf-8']
1
最后请教他人解决:controller层返回值改为void

@GetMapping("/exportExcel")
public void exportPdf(HttpServletRequest request, HttpServletResponse response){
//导出实现
}

标签:文件,vnd,utf,converter,导出,void,charset,excel
来源: https://www.cnblogs.com/fswhq/p/16258464.html