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

[BUG] JSON.parseObject方法在某些情况下反序列化编码出错 #3223

Open
xiuxiuing opened this issue Dec 27, 2024 · 0 comments
Open
Labels
bug Something isn't working fixed
Milestone

Comments

@xiuxiuing
Copy link

xiuxiuing commented Dec 27, 2024

问题描述

简要描述您碰到的问题。
在JSON字符串转对象时,会把以下JSON 字段的值编码转错

{
    "res": "Ñ\n"
}

环境信息

请填写以下信息:

  • OS信息: [e.g.:CentOS 8.4.2105 4Core 3.10GHz 16 GB]
  • JDK信息: Openjdk 11
  • 版本信息:Fastjson2 2.0.22

重现步骤

如何操作可以重现该问题:

//定义Bean
public class ResBean {
    private String res;

    public String getRes() {
        return res;
    }

    public void setRes(String res) {
        this.res = res;
    }
}

// 定义JSON字符串
String res = "{\n" +
        "    \"res\": \"Ñ\\n\"\n" +
        "}";
ResBean resBean = JSON.parseObject(res, ResBean.class);

resBean对象res字段的值出现乱码 ￑

期待的正确结果

对您期望发生的结果进行清晰简洁的描述。
期望res字段的值与json字段的值相同

相关日志输出

请复制并粘贴任何相关的日志输出。

附加信息

如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。
WX20241227-204950@2x

@xiuxiuing xiuxiuing added the bug Something isn't working label Dec 27, 2024
wenshao added a commit that referenced this issue Jan 1, 2025
@wenshao wenshao added this to the 2.0.54 milestone Jan 1, 2025
@wenshao wenshao added the fixed label Jan 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working fixed
Projects
None yet
Development

No branches or pull requests

2 participants