Hello, what is the problem with this code.. I can not understand even the
error message by eclipse.
______________________________________________
import java.io.InputStream;
import com.hp.hpl.jena.rdf.model.Model;
import com.hp.hpl.jena.rdf.model.ModelFactory;
import com.hp.hpl.jena.util.FileManager;
public class istmain
{
public static void main(String[] args) {
Model model=ModelFactory.createDefaultModel();
InputStream in=FileManager.get().open("Module.owl");
model.read(in,null,"RDF/XML");
model.write(System.out);
}
_____________________________________________________