Here you can download Object oriented application design
Here you can download User documentation
To successfully use our stand-lone program, you just need to download:
To successfully use our library, you need to have installed:
Here you can see an example, how to use our library in Java code:
#:::java
import com.hp.hpl.jena.*;
import cz.zcu.kiv.XMLtoRDF;
InputStream in = new FileInputStream("C:\\examle.xml");
OutputStream out = new FileOutputStream("C:\\example.rdf");
XMLtoRDF var = new XMLtoRDF();
var.setEncoding("windows-1250");
var.setNameSpace("eeg");
var.setOutputFormat("RDF/XML");
var.setPrefix("http://");
var.setRelation("http://relation/");
ByteArrayOutputStream os = var.transformXMLtoRDF(in);
out.write(os.toByteArray());
os.close();
in.close();
out.close();