Member since
07-20-2019
6
Posts
0
Kudos Received
0
Solutions
08-19-2019
03:29 AM
You specify the string "JSON_PATH" as the path, which cannot be resolved and thus leads to a nullpointer. Should be like: String jsonPath = context.getProperty(JSON_PATH).getValue(); Object obj = new JSONParser().parse(new FileReader(jsonPath));
... View more