Return file in Spring MVC REST

前端 未结 2 1563
星月不相逢
星月不相逢 2021-02-14 02:13

I have the REST Service Code Below code which returns a File ,now the problem is in the response body on the PostMan Client I get a raw response ,how can I can convert it so th

2条回答
  •  遇见更好的自我
    2021-02-14 03:00

    You need to use different content type instead of produces = { application/json" }

    Content-types

    http://silk.nih.gov/public/zzyzzap.@www.silk.types.html

    If it still dont work then try to get HttpServletResponse and write your file data to Stream with response.setContentType();

    Note :: Recently I have use response.getOutputStream to write a Excel file. Due to some reasons setting produces wasnt working for me.

    Also you can use Firebug in firefox to see Response headers.

提交回复
热议问题