当前位置:   article > 正文

错误:Parse Error: Invalid header value char(已解决)

parse error: invalid header value char

错误:Parse Error: Invalid header value char(已解决)

前言

将压缩包写入响应流时报的错。

错误代码

String zipName = "压缩包.zip";

try {
response.setContentType("application/zip");
response.setHeader("Content-Disposition", "attachment;filename=" + zipName); // 报错
response.getOutputStream().write(zipStream.toByteArray());
} finally {
zipStream.close();
} 
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

原因分析

  1. 这个错误通常是由于 zipName 中包含了无效的字符导致的。
  2. 错误发生在设置响应头(response header)时,具体是在设置 Content-Disposition 头的值时出错。
  3. HTTP 头的值应该是有效的 ASCII 字符,并且不能包含特殊字符或非 ASCII 字符。根据错误信息,zipName 中可能包含了一个或多个无效字符,导致无法设置正确的头值。

解决方法

zipName 进行编码,确保其中的特殊字符被正确处理。你可以使用 URLEncoder文件名进行编码,如下所示:

String zipName = "压缩包.zip";
zipName = URLEncoder.encode(zipName, "UTF-8"); // 主要添加这行代码

try {
response.setContentType("application/zip");
response.setHeader("Content-Disposition", "attachment;filename=" + zipName);
response.getOutputStream().write(zipStream.toByteArray());
} finally {
zipStream.close();
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/108739
推荐阅读
相关标签
  

闽ICP备14008679号