spring mvc头值错误的字符集

0x6upsns  于 2021-07-08  发布在  Java
关注(0)|答案(0)|浏览(230)

大家好。
我有一个返回excel报告的springweb端点。

return ResponseEntity.ok()
                .contentLength(file.length)
                .header("Content-Disposition", "attachment ; filename=" + fileName)
                .body(file);

文件->是字节数组。
问题是内容配置的值类似于filename=???????.xls。
还有我的Map

@GetMapping(value = "/table/poll/{id}/convert", produces = "application/octet-stream;charset=utf-8")
       @CrossOrigin(exposedHeaders = {HttpHeaders.CONTENT_DISPOSITION})

谢谢您。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题