net::ERR_INCOMPLETE_CHUNKED_ENCODING in Chrome only

前端 未结 12 1380
甜味超标
甜味超标 2020-11-28 13:57

I\'ve been getting this error when loading certain pages:

net::ERR_INCOMPLETE_CHUNKED_ENCODING 

These pages don\'t do anything special and

12条回答
  •  孤独总比滥情好
    2020-11-28 14:59

    If you have opened any streams for the response those must be closed. For example code if you have opened a ServletOutputStream to download the zip directory the stream need to be closed as follows.

    ServletOutputStream sos = response.getOutputStream();
    response.setContentType("application/zip");
    response.setHeader("Content-Disposition", "attachment;filename=project.ZIP");
    sos.write(zip);
    sos.flush();
    sos.close();
    

提交回复
热议问题