Re: android Jena

2018-09-15 Thread Andy Seaborne
There may be file access interception going on and FileManager isn't Android aware. You can also try RDFDataMgr. Another possible problem is bad Jena system initialization because AdapterFileManager searches with various configured mechanisms. You could open the file as a FileInputStream,

Re: android Jena

2018-09-15 Thread Lorenz B.
Did you really double-check the path to the file?! The exception > org.apache.jena.shared.NotFoundException: Not found: > file:///C:/Users/Toshiba/AndroidStudioProjects/MyApplication/app/sampledata/MallOntology.owl is clear enough. It might also be the case that once you run it as Android

Re: android Jena

2018-09-15 Thread ajs6f
This list does not accept attachments. Please realize that you are asking us to debug a project using a library that we didn't write and don't support on a cross-OS setup which with I can't imagine that many of us are familiar. This isn't really a Jena problem at all, to my eye-- it's a

Re: android Jena

2018-09-15 Thread elio hbeich
Hello, I have try the path that you gave me but it does not work i have the following error: Process: com.example.toshiba.myapplication, PID: 4431 org.apache.jena.shared.NotFoundException: Not found: file:///C:/Users/Toshiba/AndroidStudioProjects/MyApplication/app/sampledata/MallOntology.owl

Re: android Jena

2018-09-15 Thread Andy Seaborne
On 14/09/18 16:54, elio hbeich wrote: Hello, I have been generated rdf/xml file  from Pretege. I am trying to load it in android studio by using the following code: Model m =

Re: android Jena

2018-09-14 Thread elio hbeich
> > > Hello, > > I have been generated rdf/xml file from Pretege. > I am trying to load it in android studio by using the following code: > > Model m = > FileManager.get().loadModel("C:\\Users\\Toshiba\\AndroidStudioProjects\\MyApplication\\app\\sampledata\\MallOntology.owl") > ; > > but I