JSON-LD blank node to nested object in Apache Jena

六眼飞鱼酱① 提交于 2019-12-01 20:49:39

Apache Jena uses jsonld-java for JSON-LD input and output.

It is possible to setup the jsonld-java output as shown with:

https://jena.apache.org/documentation/io/rdf-output.html#json-ld ==> https://github.com/apache/jena/blob/master/jena-arq/src-examples/arq/examples/riot/ExJsonLD.java

You'll need to consult jsonld-java as to whether the writer can do what you want.

You can use jsonld-java with framing to convert your JSON-LD result to nice nested JSON. The result of the conversion will be semantically equivalent.

Try

    private static String getPrettyJsonLdString(String rdfGraphAsJson) {
        try {
        //@formatter:off
                return JsonUtils
                        .toPrettyString(
                                getFramedJson(
                                        createJsonObject(
                                                        rdfGraphAsJson)));
        //@formatter:on
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }


    private static Map<String, Object> getFramedJson(Object json) {
        try {
            return JsonLdProcessor.frame(json, getFrame(), new JsonLdOptions());
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

    private static Map<String, Object> getFrame() {
        Map<String, Object> frame = new HashMap<>();
        /*
          Use @type to define 'root' object to embed into
        */
        frame.put("@type" , "dcat:Distribution");
        Map<String,Object>context=new HashMap<>();
        context.put("dct", "http://purl.org/dc/terms/");
        context.put("rdf", "http://www.w3.org/1999/02/22-rdf-syntax-ns#");
        context.put("dcat", "http://www.w3.org/ns/dcat#");
        context.put("example", "http://example.com/vocabulary/");
        frame.put("@context", context);
        return frame;
    }

    private static Object createJsonObject(String ld) {
        try (InputStream inputStream =
                new ByteArrayInputStream(ld.getBytes(Charsets.UTF_8))) {
            Object jsonObject = JsonUtils.fromInputStream(inputStream);
            return jsonObject;
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

This will produce

{
  "@context" : {
    "dct" : "http://purl.org/dc/terms/",
    "rdf" : "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
    "dcat" : "http://www.w3.org/ns/dcat#",
    "example" : "http://example.com/vocabulary/"
  },
  "@graph" : [ {
    "@id" : "http://example.com/datasets/1",
    "@type" : "dcat:Distribution",
    "example:props" : {
      "@id" : "_:b0",
      "example:prop1" : "hello",
      "example:prop2" : "1"
    }
  } ]
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!