Commit c93a8a27 authored by xbynet's avatar xbynet

修复字符编码检测BUG

parent 1c24baa8
...@@ -26,7 +26,7 @@ public abstract class CharsetUtils { ...@@ -26,7 +26,7 @@ public abstract class CharsetUtils {
// charset // charset
// 1、encoding in http header Content-Type // 1、encoding in http header Content-Type
charset = UrlUtils.getCharset(contentType); charset = UrlUtils.getCharset(contentType);
if (StringUtils.isNotBlank(contentType)) { if (StringUtils.isNotBlank(contentType) && StringUtils.isNotBlank(charset)) {
logger.debug("Auto get charset: {}", charset); logger.debug("Auto get charset: {}", charset);
return charset; return charset;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment