0
votes
1answer
9 views

Jena: property name cannot be resolved to a variable?

I'm using Jena to query my ontology, and I'm following Step 8: Querying a Model of this tutorial. The RDF file vc-db-1.rdf being queried here is generated from Step 3: Writing RDF and is shown below: ...
0
votes
0answers
16 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
29 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
32 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 ...
-1
votes
0answers
19 views

Protege owl Ontology to RDF Sesame 2 Windows Client

I've created a Disease Ontology in Owl, complete with object properties. I'm looking for a way to create a database with that owl model along with a simple interface where we can add more information ...
0
votes
0answers
24 views

run prolog query on a jena inference model with allegrograph

I use Jena and allegrograph in eclipse to create a rdf repository and load an ontology to do some prolog queries. The ontology contains some owl properties like owl:inverseOf, hasValue, ...
-2
votes
1answer
41 views

How do I parse and save all the classes with their properties from an RDF file using Jena API in Java?

I have a project where I need to parse an RDF file and record all the data on which I will have to search for specific data afterwards. I searched the web and all I could find was how to query the ...
1
vote
2answers
72 views

Jena sparql update doesn't execute

the situation is simple, I have an RDF (N3) file that I want to upload into sparql-auth-endpoint. I use JENA ARQ, but unfortunatelly it doesn't work - it means I got no errors but the graph doesn't ...
0
votes
1answer
76 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 ...
1
vote
1answer
74 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
40 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 ...
0
votes
1answer
66 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 <!-- ...
0
votes
2answers
53 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
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
43 views

SKOS : how to generate a rdf file with SKOS in Jena

I am a beginner and I need help finding good tutorials, or sample code that would help me to understand how to generate RDF file in Jena using the SKOS API. Is there a better book for reference ...
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 = ...
1
vote
1answer
57 views

Jena not loading data from imported RDF Files

I have an RDF file that I loaded in TopBraid, I also imported some RDF files from the web. Finally, I saved the base file and check its code to ensure it includes the import statements. ...
0
votes
1answer
64 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
86 views

XML to RDF : using JENA GRDDL

I want to transform xml files to RDF. I think that JENA GRDDL can be used ,but I don't know how it works ! and I did not found any examples ! can you help me please to start using this API or show me ...
-1
votes
1answer
127 views

reading local .owl file using Jena response filenotfoundexception

I am a student doing some jena development. when i read local files, even though it only had 3 lines I could not get it functioned normally. here is my code : OntModel model = ...
2
votes
1answer
77 views

Using DataTypeProperty literal in SPARQL query not working

I'm trying to execute a very simple SPARQL query to retrieve the nationality of a person based on a name passed in the query string, and I don't understand why it's not working. Here are the relevant ...
1
vote
1answer
120 views

From jena QuerySolution to Model tdb rdf

I use dbpedia to obtain some specific results, and I want to store them in a local tdb. but i can't find a way to add the results to my local tdb. package festifolk.tdb; import ...
1
vote
1answer
63 views

DBpedia Jena Query returning null

I'm just trying to run a small query on DBpedia, the query itself works, see it here, but I don't why its returning when doing so with Jena, I'm getting null. String service = ...
0
votes
2answers
64 views

Apache Jena: What is a RDF Dataset?

I am new to Semantic Web and I have a very basic question about the JENA RDF Dataset. I read it from the documentation that a dataset is a collection of graphs (or Models in the Java API). If I view ...
-1
votes
1answer
74 views

How to get a list of resources linked to a resource in Jena?

I created a Model using the Jena APIs: public static void main(String[] args) { Model model = ModelFactory.createDefaultModel(); Resource alice = ...
1
vote
1answer
37 views

How to obtain ALL namespaces used in Jena RDF Model

I'm using com.hp.hpl.jena.rdf.model.Model.listNameSpaces() to obtain the namespaces in a Jena RDF model. But I've noticed that the model can contain statement objects with namespaces not listed by ...
0
votes
1answer
46 views

Many named Model on TDB or SDB at jena

I'm developing an application that uses the Jena. I want to use many named Model on TDB or SDB. However, DataSource Class is has been removed. In order to do this, I would not without the Model, only ...
0
votes
1answer
89 views

To display RDF using jena API's in java

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 = ...
1
vote
1answer
143 views

How to convert a SPARQL query into an RDF file in Jena?

I am trying to output an RDF/XML file directly from an SPARQL query from an Oracle database. The query is working fine as I've verified the results in the ResultSet object. However, I'm not sure how ...
2
votes
2answers
91 views

Efficient Storage and Querying of RDF triples

For my project I have a relational DB. Frequently my relational DB schema is changing. So recently I stored all the relational database tables data into one big RDF table. Table stored data as a ...
1
vote
1answer
62 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
66 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
59 views

How to add Apache Any23 RDF Statements to Apache Jena?

Basically, I use the Any23 distiller to extract RDF statements from files embedded with RDFa (The actual files where created by DBpedia Spotlight using the xhtml+xml output option). By using Any23 ...
2
votes
1answer
69 views

Jena RDF resource URI with fragment

I have a problem when reading RDF-XML into a Jena model. I use FileManager fileManager = FileManager.get(); Model model = fileManager.loadModel(url); Resource URIs like ...
1
vote
1answer
88 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
19 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
59 views

How to create a class in model to represent resource and property in jena RDF(using RDFS not OWL)

I have very little knowledge regarding jena rdf, so if I misspell please correct me. I have to create a model in database and also class to represent multiple resources (creates and add resource to ...
1
vote
1answer
98 views

Converting any RDF serialization into RDF/XML

I have seen some examples where there is a possibility to convert known serializations in RDF/XML but when the input format (e.g. XML/Turtle/N3) is not known, is there any way of achieving the ...
3
votes
1answer
80 views

Can these types of SPARQL queries be executed?

Supposed we have a huge RDF graph and want to do the following: (I tried it and it doesn't work - wanted to know if I am constructing the query incorrectly or some issue with the rdf dump). select ?n ...
0
votes
1answer
92 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: ...
2
votes
1answer
75 views

semantic web: distance between music entities and music recommendation

I have a music ontology populated by music artists, releases and musics. Each artists has a similar to relation with other artists and i need to find a way to generate music recomendations. I've ...
0
votes
2answers
125 views

I'm using Jena to import a skos thesaurus and it doesn't work [duplicate]

Possible Duplicate: org.xml.sax.SAXParseException: Content is not allowed in prolog I would like to import a skos (rdf/xml) thesaurus in Jena model. The skos thesaurus is available in ...
2
votes
2answers
70 views

Prefix namespace in RDF

I have this RDF statement (turtle format): @prefix cd: <http://mai.com/contactwrapper/0.1#> . <http://mai.com/contactwrapper/0.1#malzaa@m.com> cd:Belongs_To "1"^^xmls:string ; ...
2
votes
2answers
155 views

Did Freebase release a RDF dump recently?

I recently saw on Freebase wiki that they released a RDF dump of their data. Does this data have the complete dump of their graph including metaschema? If so, is there any documentation on how to load ...
-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, ...
1
vote
1answer
335 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 ...
5
votes
2answers
316 views

Where do I test my queries for my RDF written in SPARQL

I am a beginner with Semantic Web technologies, My question might be a very basic one but I am really stuck figuring it out. I have a RDF file I created from an XML and have validated it using w3.org ...

1 2 3 4