As you know that The Resource Description Framework is used to represents the information, so the particular RDF Example is written to explain you how to read the RDF files in Java. In the next example you will be learning about writing a RDF file in Java. But first lets see how to read it..?
To read and show the data of RDF/XML file on command prompt, just follow the given example. It is going to read a RDF/XML file and then its content will be shown on command prompt.
To read RDF/XML file we do have need an object of Model interface. It takes two arguments :
File which is to be read is being get by FileInputStream class constructor. Then read(in,"") method reads all file.
import java.io.*;
|
Our XML file will look like this.
amit.xml
| <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:vcard="http://www.w3.org/2001/vcard-rdf/3.0#" > <rdf:Description rdf:about="http://amitKumar"> <vcard:N rdf:nodeID="A0"/> <vcard:FN>Amit Kumar</vcard:FN> </rdf:Description> <rdf:Description rdf:nodeID="A0"> <vcard:Family>Kumar</vcard:Family> <vcard:Given>Amit</vcard:Given> </rdf:Description> </rdf:RDF> |
To run this example:
Output:

|
Recommend the tutorial |
Ask Questions? Discuss: Reading RDF file in Java
Post your Comment