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

toJSONString传入空对象如何返回null而不是字符串null #4495

Open
no-trifling opened this issue Apr 9, 2024 · 2 comments
Open

Comments

@no-trifling
Copy link

String s = JSON.toJSONString(null);
System.out.println(s instanceof String);
System.out.println(s == null);

输出

true
false
@mysmlz
Copy link

mysmlz commented May 7, 2024

if("null".equals(s)){
    s=null;
}

完美(滑稽)

@mysmlz
Copy link

mysmlz commented May 7, 2024

源码

public final void write(Object object) {
        if (object == null) {
            this.out.writeNull();
        } else {
...
public void writeNull() {
    this.write("null");
}

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