Coder Social home page Coder Social logo

Comments (1)

fangq avatar fangq commented on June 11, 2024

@robertoostenveld, sorry for leaving this issue open for such a long time. I have not yet been able to figure out an environment to reproduce this issue, but I can vaguely see why this happens.

In JSONLab, strings are saved in MATLAB's "native" encoding - so, it does not guarantee to be utf-8. Strictly speaking this is not JSON compliant, but it is a common practices in many JSON parsers (especially in the non-strict mode).

MATLAB's default text encoding can be queried and set via feature('DefaultCharacterSet'). In my case (Ubuntu Linux), this has been utf-8, but other users may have different settings (or manually set it differently to utf-8). In that case, the string typed in matlab may not be utf-8, and thus could cause the issue.

I suppose this can be resolved by adding

if(varargin{1}.strictunicode)
    val=native2unicode(val);
end

after this line, and add a new option StrictUnicode at the beginning.

However, I could not figure out how to test this. Using a unicode file sample, I was able to print the unicode properly regardless of my DefaultCharacterSet setting. see below screenshot.

bids_unicode_jsonlab_71

if you can help me find a system/matlab configuration that I can reproduce this issue, I would test my above proposed fix.

from jsonlab.

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.