Code Monkey home page Code Monkey logo

Comments (3)

mgholam avatar mgholam commented on August 27, 2024

The following works as expected in the tests i.e. you get \u0000

    [Test]
    public static void zerostring()
    {
        var s = fastJSON.JSON.ToJSON("\0");
        Console.WriteLine(s);
        var o = fastJSON.JSON.ToObject(s);
        Console.WriteLine("" + o);
    }

from fastjson.

czechdude avatar czechdude commented on August 27, 2024

but wait that is wrong!

I wrote a test and it does not do what is expected:

	    [Test]
	    public static void SerializeStringWithZeroEscapeTest()
	    {

	        fastJSON.JSONParameters param = new JSONParameters();
	        param.SerializeNullValues = false;
	        param.UseExtensions = false;
	        param.UseFastGuid = false;
	        param.UseEscapedUnicode = true;
	        var testClass01 = new TestClass01();
	        testClass01.stringid = "Test\0Test";

	        var newJson = JSON.ToJSON(testClass01,param);
	        Assert.True(newJson.Contains("\\u0000"), "wrong repre of \\0");

	        param = new JSONParameters();
	        param.SerializeNullValues = false;
	        param.UseExtensions = false;
	        param.UseFastGuid = false;
	        param.UseEscapedUnicode = false;
	        testClass01 = new TestClass01();
	        testClass01.stringid = "L6645230045235\00175";

	        newJson = JSON.ToJSON(testClass01, param);
	        Assert.True(newJson.Contains("L6645230045235\\00175"), "wrong repre of without escaping unicode \\0");
        }

we are trying to transfer stringids with value "L6645230045235\00175"

from fastjson.

mgholam avatar mgholam commented on August 27, 2024

Fixed in v2.1.25

from fastjson.

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.