Giter VIP home page Giter VIP logo

Comments (2)

Bunny83 avatar Bunny83 commented on August 18, 2024

This doesn't seem to be related to parsing the text as it looks like your text doesn't arrive with a known encoding. The response from the server seems to be "iso-8859-1" encoded which is latin-1

The best solution would be if you could make your server to return an utf8 encoded string. So you could try including an "Accept-Charset" request header and requesting utf8 encoding.

If that doesn't work you would need to use the iso-8859-1 encoding to properly translate the received bytes into a string. Something like that:

System.Text.Encoding iso_8859_1 = System.Text.Encoding.GetEncoding("iso-8859-1");
string text = iso_8859_1.GetString(www2.bytes);

Though working with utf8 would be the prefered solution.

from simplejson.

Ryumizuhi avatar Ryumizuhi commented on August 18, 2024

Thank,
I have just add https:// before the adresse and the request work.

from simplejson.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.