gpt4 book ai didi

Java正则表达式为每个对象拆分JSON字符串

转载 作者:行者123 更新时间:2023-12-04 07:15:01 29 4
gpt4 key购买 nike

我正在尝试从 JSON 文件中读取对象的数据。我想让我的函数一个一个读取对象,而不是一个对象数组(这样我可以处理每个对象的异常),所以我必须制作一个正则表达式,它拆分每个 JSON 对象的数据字符串。问题是,每个对象都包含另一个对象,所以我不能在“ }, { ”处拆分正则表达式,因为它将在内部花括号处拆分,而不是在外部花括号处拆分。这是一个示例 JSON 文件:

{ 
"vinForRepair" : "ABCDE123455432199",
"dateOfRepair" : "17/08/2021",
"mileage" : 100000,
"items" : [ {
"description" : "Water pump",
"quantity" : 1,
"price" : 120.0,
"metric" : "UNIT
}, { <---------This should be ignored
"description" : "Motor oil",
"quantity" : 1,
"price" : 30.0,
"metric" : "LITER"
} ]
}, { <---------This is where i want to split
"vinForRepair" : "ABCDE123455432100",
"dateOfRepair" : "15/08/2021",
"mileage" : 250000,
"items" : [ {
"description" : "Break fluid",
"quantity" : 1,
"price" : 20.0,
"metric" : "LITER"
}, { <---------This should be ignored
"description" : "Tyre",
"quantity" : 2,
"price" : 80.0,
"metric" : "UNIT"
} ]
}
我试着用
String[] jsonObjectStringArray = jsonString.split("\\}, \\{\\n  \"vinForRepair\"");
在第一个对象属性处拆分,但它不起作用。
我试图为此使用 Jackson,但它要么只读取一个对象,要么读取一组对象,正如我所说,我不想直接从文件中读取一个数组。

最佳答案

您可以通过计算 json 的“深度”来代替使用正则表达式。当“{”出现时深度增加,反之,当“}”出现时深度减少。深度为零的大括号是您要拆分的位置。

private static List<String> split(String json) {
List<String> result = new ArrayList<>();
int depth = 0;
int start = 0;
for (int i = 0; i < json.length(); i++) {
if (json.charAt(i) == '{') {
if (depth == 0) {
start = i;
}
depth++;
}
if (json.charAt(i) == '}') {
depth--;
if (depth == 0) {
result.add(json.substring(start, i + 1));
}
}
}
return result;
}
您可以在此处运行该方法 https://ideone.com/vmnmCs

关于Java正则表达式为每个对象拆分JSON字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68817833/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com