Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Special characters in the string are incorrectly encoded #90

Open
peterq opened this issue Feb 20, 2023 · 3 comments
Open

Special characters in the string are incorrectly encoded #90

peterq opened this issue Feb 20, 2023 · 3 comments

Comments

@peterq
Copy link

peterq commented Feb 20, 2023

test code

func TestStdJsonParseStd(t *testing.T) {
	var s = `hello � world`

	bin, err := json.Marshal(s)
	log.Println(string(bin), err)

	var d interface{}
	err = json.Unmarshal(bin, &d)
	log.Println(d, err)

	a := fastjson.Arena{}
	bin = a.NewString(s).MarshalTo(nil)
	err = fastjson.ValidateBytes(bin)
	log.Println(string(bin), err)
}

Output

=== RUN   TestStdJsonParseStd
2023/02/20 15:36:09 "hello \u0014 world" <nil>
2023/02/20 15:36:09 hello � world <nil>
2023/02/20 15:36:09 "hello \x14 world" cannot parse JSON: cannot parse string: unknown escape sequence \x; unparsed tail: ""
--- PASS: TestStdJsonParseStd (0.00s)
PASS

Expected:
like the standard library, encode to \u0014 insteadof \x14 (which will cuase a problem when decodeing the json string later)

@peterq
Copy link
Author

peterq commented Feb 20, 2023

@Joswu-945

@kostaspap
Copy link

Encountered the same issue today. It seems that MarshalTo generates output that fails to be parsed by Go standard json library.

@kostaspap
Copy link

Seems to be the same issue as #86

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants