Tagged Questions
0
votes
1answer
74 views
add properties to individual and insert them all into my file.owl
I have a class, MAN. I want to add an individual, jack, with properties:
hasage="50"
hasadress="france"
How can I create my individual jack and add properties to him and save them into my file ...
0
votes
2answers
109 views
get a property value of an individual jena api
I have my class Alert which contain as individual
Alert_1
Alert_2
Alert_3
and each individual has properties witch contains values
for example
Alert_1 :
hasanalyser : analyser546
...
0
votes
1answer
41 views
how to rename an ontology's prefixes
I have created an onology using Jena API which contains the following classes and DataType Properties:
public class Onto {
OntClass USER,...;
OntModel model;
String uriBase;
...
1
vote
1answer
64 views
Jena someValuesFrom error - {E201} rdf:resource not allowed as attribute here
I'm fairly new to learning the semantic web, so to facilitate learning, I chose to write an ontology about something I'm fairly familiar with, video games.
So I think I'm starting to understand this ...
1
vote
1answer
116 views
Using GROUP BY, COUNT and SAMPLE in apache jena SPARQL
So I have an RDF schema that contains many "groups", and each of these groups has a "name", and contains a number of "elements". I need to select the name of every group, along with the number of ...
2
votes
1answer
48 views
SPARQL query on rdf:resource
Suppose I want to retrieve the names of all elements in the periodic table with a standard state of 'gas'. Here are what I believe are the relevant portions of the .owl file…
<owl:Class ...
1
vote
0answers
78 views
Issues with Jena OWL reasoner
I am new to Jena but now encountered with some problems. I have a superclass Query Processing and its four subclasses:
Query Processing
Query intent
Query reformulation
Query representation
Query ...
0
votes
1answer
84 views
How to generate list of named classes and object property names in a given ontology using java & jena
Here is the owl ontology that represents information on artists, musicians and musical hits
<rdf:RDF xml:base="http://www.semanticweb.org/ontologies/2013/3/MyArt">
<owl:Ontology ...
0
votes
2answers
44 views
Annotate Web pages using given Ontology
i have to annotate some web pages using particular ontology of a particular domain and generate annotated web pages in RDF format.
so there is any open source tool available which will complete my ...
0
votes
2answers
74 views
Insert data into OWL ontology
I have a custom OWL ontology and I uploaded into my model like this:
OntModel=ModelFactory.createOntologyModel();
InputStream in = FileManager.get().open(urlFile);
model.read(in,"");
...
0
votes
1answer
107 views
Jena multiple rdfs:label
I'm new to Jena and Owl I was given an ontology. I can open it with Protege 4.2 without any problems but when I try to open it with Jena I get:
Exception in thread "main" ...
0
votes
1answer
79 views
some confusions between rdf and owl in Jena
I am fresh learning semantic web.
As Jena cannot process owl format files, I used Protege to create a ontology, saved as RDF/XML but the file ended with .owl.
see the code:
OntModel model = ...
0
votes
1answer
58 views
Read a remote equivalentClass of ontology in Jena
When I run "getEquivalentClass()" and my equivalentClass is remote (EX: http://dbpedia.org/data3/Film.rdf) raise error:
Cannot convert node http://dbpedia.org/data3/Film.rdf to OntClass: it does not ...
0
votes
1answer
160 views
Store data in Jena TDB and use reasoning
I have an OWL ontology file as RDF and want to store my data in a TDB and want to use reasoning. Actually this sounds simple so far :)
But here is the point where I'm confuesd:
I created a TDB an ...
0
votes
2answers
145 views
Return System.out to String
I have query Sparql on OWL 'ressu.owl' file which created with protege 3.x.. am obliged to point to transform the resultset into something usable like JTextArea for this i work with ...
0
votes
0answers
138 views
Imported OWL files not being used
I have created an OWL file in TURTLE notation from Protege, which uses two imports:
owl:imports <http://localhost/imported1.owl> ,
<http://localhost/imported2.owl> .
I have loaded this ...
0
votes
1answer
220 views
Jena change my owl file after adding Instance
I have owl file crated with protege 4.2. when I add some Instance with Jena, Jena change the file structure but the file extension remain the same (.owl) the file is readable in protege with some ...
0
votes
1answer
227 views
Add individual in owl file with Jena
I have an OWL file named Modelling.owl which created using Protege 4.2. But then I have to modify it by registering some new Individual and it's properties using Jena.
For example I have Class Model, ...
0
votes
1answer
99 views
Jena Rules: How to perform literal value type conversion from float to double (and vice versa)?
I have the following Jena Rule to perform addition:
@prefix pm: <http://example.org/ProductionMesure#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix owl: ...
0
votes
1answer
81 views
Merging Domain Ontologies
I have worked and developed two different domain ontologies. But now i like to merge these two ontologies as my application requirement has been changed and requires knowledge of both ontologies. What ...
1
vote
1answer
365 views
Java - Using Jena APi - Get data from RDF file
My question concerns the class Person with the datatype properties hasFirstName, hasLastName, hasDateOfBirth, hasGender.
I'm using Java and Jena API.
Here is how one person is represented in my RDF ...
0
votes
1answer
140 views
Save model after create individuals
I am trying to create individuals and save them in OWL file. The OWL file was created in Protégé. The size of the file was 10KB but after trying to save the individuals in the ontology the size of the ...
0
votes
2answers
569 views
create onstance of classes of owl ontology and save them in rdf store
I generated OWL ontology using Protege. I want to use my OWL ontology and create the RDF triples to be saved in a triple store using Jena.
I know how to read/write RDF,but i dont know how to create ...
0
votes
2answers
306 views
Finding The Super Class of a class just before Top Class with Jena
I am using jena framework to process my owl ontology.
I want to write a method which can find the super class it belongs which is just under the Thing class.
Four example, if there are 5 level ...
1
vote
1answer
70 views
How to make instance of one class to be instance of another class in Jena?
I'm making an automatic instanctiation of an ontology. let says Person with his subclass FEMALE and MALE.
During the instanciation, I can create instances of the class FEMALE and MALE.
for ...
0
votes
1answer
133 views
Linking concepts using OWL.sameAs in Jena
I am trying to tie up two identical individuals from different sources. My idea is that, if IndividualA has a missing property P but is tied up to IndividualB with an existing P using OWL.sameAs, then ...
1
vote
1answer
213 views
How to retrieve comments from an owl file using Jena API?
currently I am doing a project on Ontology Based Information Retrieval. I have created the base ontology using the ontology editor, Protege and obtained the file , say family.owl .Basically i want to ...
1
vote
1answer
69 views
Relating classes in ontology
I have problems relating classes (not individuals) in my ontology. I need to know which one
OWL(full-dl-lite) allows to relate classes.
i mean the domain and range of property be ...
0
votes
1answer
257 views
How to get an individual which match an Objectproperty with Jena?
Let consider the following ontology, where PERSON, NAME, SURNAME and IDENTIFICATION are classes. NAME and SURNAME are subclass of IDENTIFICATION. hasSurname and hasName are functional ObjectProperty. ...
1
vote
2answers
344 views
writing ontModel as owl not as rdf by jena
I have a owl ontology, I read it into jena OntModel. then I update it at runtime. Now I want to write it back as a OWL ontology. I am using the code below:
RDFWriter writer = ...
0
votes
1answer
63 views
Pellet-2.3 packages missing?
I've downloaded and install Pellet-2.3 from here (containing Pellet and Jena and many others plug-ins). Within an Eclipse Jena project It is impossible for me to acces following packages.
import ...
1
vote
1answer
66 views
setSameAs() Linked Data — Jena
I am trying to link two individuals A and B using
B.setSameAs(A) OR A.setSameAs(B)
A has properties hasOne, hasTwo
B has a property hasThree
and I'm hoping that the property of B can be ...
0
votes
1answer
144 views
Trouble while loading an ontology with Pellet API
I want to use Jena Pellet API as Reasoner for infering new data in an owl file. I've downloaded the jar file pellet.jar and I've attached It to my Eclipse java project. However I'm still getting this ...
2
votes
1answer
83 views
Confused about Ontology being “data-driven” s.t. updating an ontology
I have read here* that ontologies (RDF's in nature) are data-driven because one can work with a small ontology and use it for an application, and later... integrate additional concepts to the same ...
0
votes
2answers
155 views
Obtain only names after “#” from SPARQL query
I have this java code that, using apache jena api, queries the pizza ontology
String queryStr =
"prefix pizza: <" + PIZZA_NS + "> " +
"prefix rdfs: <" + RDFS.getURI() + ...
3
votes
1answer
106 views
jena direct inferred graph
I'm noob in Jena and reading this page,more specifically in Figure 5(iii) -"direct inferred relationship" I found exactly what I need. Basically, my OntModel needs to respect the following rule: ...
0
votes
0answers
154 views
NoSuchMethodError?
I want to load my OWL ontology into java code. When I run my code it will give following error.
Exception in thread "main" java.lang.NoSuchMethodError: ...
0
votes
1answer
223 views
Setting up OWL reasoner in Jena
I am trying to define (in turtle) a symmetric, transitive predicate in Turtle and get inferences from it.
Here is how I defined my predicate:
:similar a owl:SymmetricProperty; a ...
0
votes
1answer
194 views
Jena, RDF and Jade implementation
I have an OWL ontology and I want to store data as RDF . When I search in the Google I saw Jena library is used for this purpose. But I could not understand how can I represent data as RDF in Jade.. ...
0
votes
1answer
300 views
Basic owl reasoning using Jena
I'm new to ontologies and have a basic question about OWL reasoning. The question may seem long winded, sorry about that..
Consider an ontology with the following axioms
(owl:class C1) and (owl:class ...
1
vote
1answer
130 views
How to get all restrictions on an individual in Jena
my ontology has a Road class, and a shop class.
The Road class has an individual called 'highstreetroad' which is related to 8 different shop individuals.
I'm trying to print all the existing ...
4
votes
2answers
225 views
When should I use Semantic Web Technology?
My goal is to implement a semantic search for my data. My data domain contains proffession skills. I need additional relations for my data structure like 'sameAs' and 'broader'. So, for example if I ...
1
vote
0answers
206 views
How to build a GUI on top of RDF or OWL ontology
I use Eclipse withe the OWL API or JENA to load my ontology. I want to map instances from the ontology to clickable images/icons on a GUI so that the ontology can be visualized for human consumption.
...
0
votes
1answer
73 views
How to proprely instantiate DatatyProperties on Jena?
I wrote the following Jena code. But It is an error and I didn't know how to address this.
Here is the code
Resource subject = null;
Property property = null;
Statement statement = null;
...
1
vote
1answer
196 views
How to convert XSD Simple Type to rdfs:Datatype using Jena
Suppose I have an XSD file having below lines of code;
<xsd:simpleType name="test">
<xsd:restriction base="xsd:string">
<xsd:maxLength value="50" />
...
0
votes
2answers
445 views
How to count individuals of an owl class in Jena?
I'm working on automatic instanciation of an OWL model with Jena. Since every individual need an unique identifier.
How could I know the number of individual of a given OWL class in order to ...
1
vote
1answer
174 views
Reading restriction constraints using Jena
I have some object restrictions like
hasVendor some Vendor
hasYear some integer[minLength 2, maxLength 4, >=1995, <=2012]
hasPrice only string[pattern "/^[0-9]+(\.[0-9]{2})?$/"]
where Vendor ...
0
votes
1answer
97 views
How should I use getDatatypeProperty(String PropertyName) in Jena?
I have an owl ontology in which has a DatatypeProperty "hasAge"
Can anyone tell me why this code returns null value?
String URI = "http://owldl.com/ontologies/dl-safe.owl"
DatatypeProperty data = ...
4
votes
1answer
316 views
Read restriction values using Jena
I have an object restriction defined as follows
hasYear some integer[minLength 2, maxLength 4, >=1995, <=2012]
How can i read the individual values defined in the restriction using Jena.
3
votes
2answers
419 views
Is there any free owl reasoner that can reason without load all data into memory?
I use Jena and TDB to store RDF,and I want to do some inference on it.But the RDF data is big,and Jena's owl reasoner has to load all the data into memory .
So I want to find one reasoner that can ...




