Closed jhzou1 closed 3 years ago
HttpResult httpResult = new HttpHelper().GetHtml(new HttpItem { URL = "http://whois.pconline.com.cn/ip.jsp?ip=" + ipAddress, ContentType = "text/html; charset=gb2312" });
目前解决方法,引入System.Text.Encoding.CodePages 包 在使用 GB2312之前执行下面的代码。 System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);
好的,谢谢反馈
HttpResult httpResult = new HttpHelper().GetHtml(new HttpItem { URL = "http://whois.pconline.com.cn/ip.jsp?ip=" + ipAddress, ContentType = "text/html; charset=gb2312" });
目前解决方法,引入System.Text.Encoding.CodePages 包 在使用 GB2312之前执行下面的代码。 System.Text.Encoding.RegisterProvider(System.Text.CodePagesEncodingProvider.Instance);