This Addon requires the following installation steps.
To use this addon, you must add it as a dependency in the pom.xml of your forge-addon
classified artifact:
<dependency>
<groupId>org.jboss.forge.addon</groupId>
<artifactId>parser-json</artifactId>
<classifier>forge-addon</classifier>
<version>${version}</version>
</dependency>
- JsonResource for Json files
-
Allows easy manipulation of json data
@Inject private ResourceFactory factory; JsonResource resource = factory.createResource(new File("abc.json")).reify(JsonResource.class); javax.json.JsonObject model = resource.getJsonObject(); .... JsonArray array = ...; resource.setContents(array); or JsonObject obj = ...; resource.setContents(obj);