码迷,mamicode.com
首页 > 其他好文 > 详细

Input is not proper UTF-8, indicate encoding !错误处理

时间:2018-10-30 22:47:32      阅读:475      评论:0      收藏:0      [点我收藏+]

标签:blank   err   ati   highlight   contains   prope   col   div   static   

xml 中如果包含部分 ascii 控制字符(小数字)则 chrome会报告如下类型错我:

This page contains the following errors:
error on line 20 at column 89: Input is not proper UTF-8, indicate encoding !
Bytes: 0x08 0xE8 0xBA 0xB2
Below is a rendering of the page up to the first error.

解决办法:replace 这些字符

 public static string ReplaceXMLInvaidChar(string xmlStr)
        {
           return Regex.Replace(xmlStr, "[\x00-\x1F\x7F]","");
           
        }

  

原因:XML 规范不支持如下字符
#x0 - #x8 (ASCII 0 - 8)
#xB - #xC (ASCII 11 - 12)
#xE - #x1F (ASCII 14 - 31)

参看文档:https://support.microsoft.com/en-us/kb/315580

原文地址:https://blog.csdn.net/isaisai/article/details/53899089

Input is not proper UTF-8, indicate encoding !错误处理

标签:blank   err   ati   highlight   contains   prope   col   div   static   

原文地址:https://www.cnblogs.com/pengwen135/p/9880092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!