I have some web services which return RDF file. Now I need to display this RDF file like: http://dbpedia.org/page/Berlin. Is there some Java library which can do this, because now it looks like just as XML.
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
Try Jena, it will parse the RDF into Java structures which you can use to generate HTML. Also see the answers here: XSLT transformation from RDF to html
Try Pubby, a Java webapp that can connect to an RDF data source and presents an HTML view. Usually the RDF data is stored in a SPARQL store, but you can also just load it from an RDF file using the
conf:loadRDF
configuration option.