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是否有效错误 #2059

Closed
1195952223 opened this issue Nov 28, 2023 · 3 comments
Closed

[BUG]判断json是否有效错误 #2059

1195952223 opened this issue Nov 28, 2023 · 3 comments
Labels
bug Something isn't working fixed
Milestone

Comments

@1195952223
Copy link

1195952223 commented Nov 28, 2023

问题描述

简要描述您碰到的问题。

环境信息

请填写以下信息:

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

重现步骤

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

  1. 使用 xxx.xxx 方法
  2. 输入 ... 数据
  3. 出现 ... 错误
//可在此输入示例代码
        String str1 = "{'queryParam':{ 'STATUS': '1','MENU_TYPE': '11'}}";
        String str2 = "{\"node\":\"10\",\"queryParams\":{},\"appId\":\"watf\",\"bzCode\":\"WATF\",\"treeConfigId\":\"DEPT_TREE\",\"sync\":DE\":,\"regExp\":\"\"}";
        System.out.println(JSON.isValid(str1));
        System.out.println(JSON.isValid(str2));
### 期待的正确结果
*对您期望发生的结果进行清晰简洁的描述。*
str1true
str2false

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


#### 附加信息
*如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。*
@1195952223 1195952223 added the bug Something isn't working label Nov 28, 2023
@1195952223 1195952223 changed the title [BUG]判断json是否有效错误JSON.isValid("{'queryParam':{ 'STATUS': '1','MENU_TYPE': '11'}}") fastjson1正确 [BUG]判断json是否有效错误 Nov 28, 2023
@oooopl
Copy link

oooopl commented Nov 29, 2023

单引号不是标准的 json 格式

@wenshao wenshao added this to the 2.0.43 milestone Nov 30, 2023
@wenshao wenshao added the fixed label Nov 30, 2023
@wenshao
Copy link
Member

wenshao commented Nov 30, 2023

str1可以被识别为合法的JSON,str2不是

@wenshao
Copy link
Member

wenshao commented Dec 3, 2023

@wenshao wenshao closed this as completed Dec 3, 2023
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

3 participants