解决springboot项目请求出现非法字符问题 java.lang.IllegalArgumentException:
Invalid character found in the request target. The valid characters are defined in RFC 7230 and RFC 3986
原因:上传文件名含中文,返回远程路径地址中带有中文,在使用XWPFTTempl等插件时获取文件时报错,需要转码才能使用。
可以使用hutool工具里面的---URLUtil.encode("url");
该方法只对文件名称进行编码,文件名前面的路径保持不变。
http://.../profile/upload/2023/04/10/张三.jpeg文章来源:https://www.toymoban.com/news/detail-718660.html
==》http://.../profile/upload/2023/04/10/%5cxe5bca0%5cxe4b889.jpeg文章来源地址https://www.toymoban.com/news/detail-718660.html
到了这里,关于further occurrences of HTTP request parsing errors will be logged at DEBUG level。的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!