C # webclient Chinese garbled Problem solving method _c# Tutorial

Source: Internet
Author: User

WebClient in the call downloaddata or downloadstring when the data requested back garbled problem, the solution is as follows:

1, set WebClient encoding format for the target encoding format

Copy Code code as follows:
WebClient Web = new WebClient ();//Create WebClient Object
Web. Encoding = system.text.encoding.utf8;//Define Object language
string returns = Web. Downloadstring ("_http://www.weather.com.cn/data/sk/101310101.html");//Request resources to a connection

2. Get the data first and then turn the code

Copy Code code as follows:
WebClient WC = new WebClient ();
byte[] Pagedata = WC. Downloaddata ("http://m.weather.com.cn/data/101110101.html");
String rr = encoding.getencoding ("Utf-8"). GetString (Pagedata);

summed up, or coding problems, regardless of which method, set a good encoding can be.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.