在Java中使用json-path库进行删除指定路径数据,可以通过以下步骤实现:
String jsonStr = "{\"name\": \"John\", \"age\": 30, \"address\": {\"city\": \"New York\", \"zip\": \"10001\"}}";
DocumentContext jsonContext = JsonPath.parse(jsonStr);
jsonContext.delete("$.address.city");
String updatedJsonStr = jsonContext.jsonString();
System.out.println(updatedJsonStr);
通过以上步骤,可以使用json-path库在Java中删除指定路径的数据。