Tagged Questions
0
votes
0answers
13 views
How to populate an existing ontology with rdf triplets from multiple xml files?
I have an ontology which has already been defined. and i have a folder with hundreds of xml files which have been extracted by crawling.How can i extract triplets from all these xml files and populate ...
0
votes
1answer
27 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;
...
0
votes
1answer
30 views
Extract information from XML to RDF triples using ontology
I have an existing ontology and some XML files. I want to extract the data from the existing XML files and store them in (a new RDF file) RDF triples using Jena. How can I make the mapping between XML ...
0
votes
1answer
21 views
Assigning labels to triples
I am currently trying to do stream reasoning using Jena, so I want to be able to reason over a certain set of triples that have occurred in a particular window of time, also taking into account some ...
0
votes
1answer
74 views
Is it possible to read allowed values for a datatype property of a class?
I'm using an ontology in which I created a class named "USER". This class contains a datatype property named "gender". Then I inserted two allowed values for this datatype which are "male" and ...
0
votes
1answer
65 views
Data property value extraction from an instance of an ontology
I am trying to display the data property values of the instances of my ontology.I am using Jena for this purpose.
My instances are as follows
<!-- ...
-6
votes
0answers
53 views
Can anyone provide the code in java for making the clusters using k_means algorithm? [closed]
I'm working on a project using ontology as a database. I have to make the clusters of sub-classes of any super class. Can anyone provide the code in java for making the clusters using k_means ...
0
votes
2answers
30 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
0answers
86 views
Program to Display Data Values Of Instances of an Ontology using Jena
The following is my ontology .owl file which has a Smurf and a Mailbomb Instance( the instances are at the end of the file) . I wish to print the values of the data properties of the instances along ...
0
votes
1answer
64 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
39 views
How to programatically list the relationship between two instances in an ontology?
I have an ontology which i made up of relationship as follows
Company1
:hasSubsidary sub1
:hasDepartment Cars1
:hasSubdepartment Manufacturing
:isinBuilding area1
:hasUnit ...
0
votes
1answer
236 views
How to import .owl file into eclipse using Jena and create instances of it
Hi i have created an ontology using protege(.owl file).Now i wish to import this into a java program(using jena on eclipse) and create instances of it(What i mean is that my ontology represents ...
0
votes
2answers
39 views
List object resources from a instance in Jena
How can I list all Object Resources associated to a instance of Resource in Jena?
For example: Micheal has an Object Resource called "Ben" which is a instance of a Resource Person
0
votes
1answer
42 views
How to list the objects of rdf statements?
I would like to select a list of the resources related to a given subject resource, via any RDF predicate.
For example, if the resources in my model are ex:alice, ex:bob, ex:peter" andex:Ben, and my ...
0
votes
0answers
61 views
how to get all resources related to resource using jena API's..?
I have created a few methods in StoryModel. If there is any mistake in the code I really appreciate corrections.
public class StoryModel {
String dbName = "DB3";
String sns = ...
0
votes
0answers
58 views
Sparql query label annotation for data properties
In my ontology there is an individual "Lion" belong to a class "Carnivorous" which is belong to "Animal" class ( Animal>>Carnivorous:Lion)
this individual or instance "Lion" has multiple data ...
0
votes
0answers
33 views
Searching for a tool that build Sparql query automatically by selecting a particular individual
I have built my ontology using protege 4.1 , and i query the ontology through jena api, i need a visual tool that can help me to build the correct sparql query that select an individual or data ...
1
vote
1answer
61 views
How to return property of a resource using jena API in Java?
How to return all properties in model involving the specified resource(as subject or object)...?
A method which returns string[] of properties related to that resource.
1
vote
2answers
63 views
Build a method to delete a resource using Jena API
I have created a method to delete resources - I hope the below code is correct.... but it deletes only one statement.
public void deleteResource(String resourceName) {
OntResource resource = ...
1
vote
1answer
85 views
Use Jena to parse enumerated datatype generated by Protege
I have an Ontology file generated by Protege 4.2.0. It includes a DatatypeProperty defined as follows.
<owl:DatatypeProperty rdf:about="http://example.com/NLPSchema.owl#race">
<rdf:type ...
-1
votes
1answer
35 views
Creating methods in java using jena rdf [closed]
I have very little knowledge in jena, I got a project to submit in 3 days and I have no idea how to create methods for the following ones.... Please can you help me..
public static void ...
1
vote
1answer
60 views
How to create a method to get resources of a certain type with Jena?
I have very little knowledge about Jena. How should I create a method to get resources of a specific type?
public static String[] getResourcesOfType(String typeName)
{
...
}
0
votes
1answer
18 views
How to create method public static boolean setType(Resource resource, String typeName) in jena rdf
Can you please help me in building the code in setting a Resource to a Class
import com.hp.hpl.jena.ontology.Individual;
import com.hp.hpl.jena.ontology.OntModel;
import ...
0
votes
0answers
114 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
71 views
How to use Fuseki for storing data persistently with ontology schema
Hi I'm new to ontology storing :)
Actually I'm looking for a triplestore with Java interoperability (Jena). So I choose Apache Fuseki.
In the documentation I found the ja:MemoryModel for loading ...
0
votes
1answer
216 views
Trying to find the parent-class of RDFNode objects in jena api
I am using Jena java api to search in an ontology, and I use the command
Property predicate=model.getProperty("propertyURL");
NodeIterator objects = model.listObjectsOfProperty(predicate);
to find ...
0
votes
1answer
72 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 ...
0
votes
1answer
85 views
Trying to get the members of a specific class in an ontology
I am using Jena java API in order to read/search an ontology, and I am trying to find all the members of a specific class of the ontology.
So, I use the following code:
OntClass oc = ...
-1
votes
1answer
98 views
Get data from rdf file [duplicate]
Possible Duplicate:
Java - Using Jena APi - Get data from RDF file
I'm using Java and Jena API.
I have the class Person with the datatype properties hasFirstName, hasLastName, ...
0
votes
0answers
186 views
Creating base URI for an ontology
I need to query an ontology which I designed in protege 3.4.8 in my Netbeans project. How do I create the base URI for my ontology so that I can perform this task. Or is there any other way I can do ...
0
votes
2answers
250 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
179 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
63 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 ...
1
vote
1answer
156 views
tools for generating semantic web based on ontology
what is the differencce between creating ontology in protege IDE and creating RDf/ontology in netbeans using jena?
i am using this tutorial http://jena.sourceforge.net/tutorial/RDF_API/ for ...
0
votes
1answer
219 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
1answer
168 views
NoSuchMethod exception when running simple SPARQL query in JENA
Hi i've just started using Jena and wanted to run a few SPARQL queries. I got the following exception when I tried to run a basic select query:
Caused by: java.lang.NoSuchMethodError: ...
2
votes
1answer
79 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
147 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
101 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
1answer
104 views
insert instance with Jena
I need some help, i would like insert a instance to my ontology
$ public static JenaOWLModel owlModel;
public static void main( String[] args ) {
try{
owlModel = ...
1
vote
3answers
480 views
Error in saving an ontology with jena
I'm trying to create a new ontology and after some actions save it. It's been created well and I have no problem in dealing with classes and other things but when I try to save it to a local file ...
3
votes
2answers
318 views
create a new ontology with Jena
I'm trying to use Jena. For creating a new ontology my code is:
String SOURCE = "http://www.w3.org/2002/07/owl#";
String NS = SOURCE + "#";
OntModel ontology = ...
1
vote
1answer
102 views
I have tried to write a snippet given in the ontology tutorial api in Jena
The Snippet is as follows:
static String personURI = "http://somewhere/JohnSmith";
static String fullName = "John Smith";
Model model = ModelFactory.createDefaultModel();
Resource johnSmith = ...
0
votes
1answer
263 views
Using OntProperty and DatatypeProperty - Jena Ontology
OntModel onto = ModelFactory.createOntologyModel(
OntModelSpec.OWL_MEM_MICRO_RULE_INF, null );
String inputFileName = "./src/test.xml";
InputStream in = ...
1
vote
1answer
117 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 ...
3
votes
1answer
466 views
Semantic web ontology tools and support for ASP.net projects [closed]
DotnetRDF, is the best contribution for Semantic Web support in DotNet, however it doesn't support Ontology as Jena and other Non-DotNet projects do.
Some people are talking about a new stable ...
4
votes
2answers
218 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 ...
0
votes
1answer
71 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
2answers
147 views
How write this SPARQL request?
I've the following Ontology built in Protege 4.
In this Ontology : The main class Frame has an datatypeProperty hasDuration with domain 'Frame' and range UnsignedShort. the ClassShortFrame and ...
0
votes
2answers
399 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 ...

