SPARQL query using Fuseki server in androidIs there a way to run Python on Android?How to save an Android Activity state using save instance state?Activity restart on rotation AndroidClose/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?“Debug certificate expired” error in Eclipse Android pluginsIs there a unique Android device ID?What is the difference between gravity and layout_gravity in Android?What is 'Context' on Android?Proper use cases for Android UserManager.isUserAGoat()?
Is 悪いところを見つかった proper Japanese?
How far did Gandalf and the Balrog drop from the bridge in Moria?
Heat equation: Squiggly lines
How can I export the "available software to download" to a file?
Is it legal for a company to enter an agreement not to hire employees from another company?
Are differences between uniformly distributed numbers uniformly distributed?
If "more guns less crime", how do gun advocates explain that the EU has less crime than the US?
Can "être sur" mean "to be about" ?
Submitting a new paper just after another was accepted by the same journal
Is there a standardised way to check fake news?
First amendment and employment: Can a police department terminate an officer for speech?
What should I call bands of armed men in the Middle Ages?
Why command hierarchy, if the chain of command is standing next to each other?
Why does the standard fingering / strumming for a D maj chord leave out the 5th string?
How many people would you need to pull a whale over cobblestone streets?
Why are Gatwick's runways too close together?
If a digital camera can be "hacked" in the ransomware sense, how best to protect it?
Plotting octahedron inside the sphere and sphere inside the cube
how do companies get money from being listed publicly
PhD advisor lost funding, need advice
How to remove ambiguity: "... lives in the city of H, the capital of the province of NS, WHERE the unemployment rate is ..."?
Why did I get only 5 points even though I won?
How exactly are corporate bonds priced at issue
Markov-chain sentence generator in Python
SPARQL query using Fuseki server in android
Is there a way to run Python on Android?How to save an Android Activity state using save instance state?Activity restart on rotation AndroidClose/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?“Debug certificate expired” error in Eclipse Android pluginsIs there a unique Android device ID?What is the difference between gravity and layout_gravity in Android?What is 'Context' on Android?Proper use cases for Android UserManager.isUserAGoat()?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
How to use Fuseki endpoint to send a query from an android studio. I got nothing when I run my app.
I want to query my own ontology and when I query using Fuseki endpoint in the browser, it works. But I want to get the result in my android app
here is my code
String queryString ="PREFIX chld: <http://www.semanticweb.org/rawantur/ontologies/2019/1/untitled-ontology-128#>n"+
"SELECT ?Obesity_Treatmentn"+
"WHERE chld:Obesity_disease chld:treatedBy ?Obesity_Treatment n";
try
Uri.Builder builder = new Uri.Builder();
builder.scheme("http").encodedAuthority("192.168.0.3:3030").appendPath("ds/sparq").appendQueryParameter("format", "=application/json"). appendQueryParameter("query", sparqlQueryString1);
String urlstr = builder.build().toString();
URL url = new URL(urlstr);
try
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(false);
con.setRequestMethod("GET");
con.connect();
InputStream in = new BufferedInputStream(con.getInputStream());
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) !=null)
Text = (TextView) findViewById(R.id.textView12);
Text.setText(line);
catch (IOException e)
e.printStackTrace();
catch (Exception e)
e.printStackTrace();
192.168.0.3 is my computer IP address, I did not put localhost because I want to run on a mobile device.
When I entered localhost:3030/ds/sparql or 192.168.0.3/ds/sparql
or if I replace sparql with query in the browser I got
Error 404: Service Description: /ds/query
android fuseki
add a comment |
How to use Fuseki endpoint to send a query from an android studio. I got nothing when I run my app.
I want to query my own ontology and when I query using Fuseki endpoint in the browser, it works. But I want to get the result in my android app
here is my code
String queryString ="PREFIX chld: <http://www.semanticweb.org/rawantur/ontologies/2019/1/untitled-ontology-128#>n"+
"SELECT ?Obesity_Treatmentn"+
"WHERE chld:Obesity_disease chld:treatedBy ?Obesity_Treatment n";
try
Uri.Builder builder = new Uri.Builder();
builder.scheme("http").encodedAuthority("192.168.0.3:3030").appendPath("ds/sparq").appendQueryParameter("format", "=application/json"). appendQueryParameter("query", sparqlQueryString1);
String urlstr = builder.build().toString();
URL url = new URL(urlstr);
try
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(false);
con.setRequestMethod("GET");
con.connect();
InputStream in = new BufferedInputStream(con.getInputStream());
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) !=null)
Text = (TextView) findViewById(R.id.textView12);
Text.setText(line);
catch (IOException e)
e.printStackTrace();
catch (Exception e)
e.printStackTrace();
192.168.0.3 is my computer IP address, I did not put localhost because I want to run on a mobile device.
When I entered localhost:3030/ds/sparql or 192.168.0.3/ds/sparql
or if I replace sparql with query in the browser I got
Error 404: Service Description: /ds/query
android fuseki
add a comment |
How to use Fuseki endpoint to send a query from an android studio. I got nothing when I run my app.
I want to query my own ontology and when I query using Fuseki endpoint in the browser, it works. But I want to get the result in my android app
here is my code
String queryString ="PREFIX chld: <http://www.semanticweb.org/rawantur/ontologies/2019/1/untitled-ontology-128#>n"+
"SELECT ?Obesity_Treatmentn"+
"WHERE chld:Obesity_disease chld:treatedBy ?Obesity_Treatment n";
try
Uri.Builder builder = new Uri.Builder();
builder.scheme("http").encodedAuthority("192.168.0.3:3030").appendPath("ds/sparq").appendQueryParameter("format", "=application/json"). appendQueryParameter("query", sparqlQueryString1);
String urlstr = builder.build().toString();
URL url = new URL(urlstr);
try
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(false);
con.setRequestMethod("GET");
con.connect();
InputStream in = new BufferedInputStream(con.getInputStream());
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) !=null)
Text = (TextView) findViewById(R.id.textView12);
Text.setText(line);
catch (IOException e)
e.printStackTrace();
catch (Exception e)
e.printStackTrace();
192.168.0.3 is my computer IP address, I did not put localhost because I want to run on a mobile device.
When I entered localhost:3030/ds/sparql or 192.168.0.3/ds/sparql
or if I replace sparql with query in the browser I got
Error 404: Service Description: /ds/query
android fuseki
How to use Fuseki endpoint to send a query from an android studio. I got nothing when I run my app.
I want to query my own ontology and when I query using Fuseki endpoint in the browser, it works. But I want to get the result in my android app
here is my code
String queryString ="PREFIX chld: <http://www.semanticweb.org/rawantur/ontologies/2019/1/untitled-ontology-128#>n"+
"SELECT ?Obesity_Treatmentn"+
"WHERE chld:Obesity_disease chld:treatedBy ?Obesity_Treatment n";
try
Uri.Builder builder = new Uri.Builder();
builder.scheme("http").encodedAuthority("192.168.0.3:3030").appendPath("ds/sparq").appendQueryParameter("format", "=application/json"). appendQueryParameter("query", sparqlQueryString1);
String urlstr = builder.build().toString();
URL url = new URL(urlstr);
try
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setDoOutput(false);
con.setRequestMethod("GET");
con.connect();
InputStream in = new BufferedInputStream(con.getInputStream());
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
String line;
while ((line = reader.readLine()) !=null)
Text = (TextView) findViewById(R.id.textView12);
Text.setText(line);
catch (IOException e)
e.printStackTrace();
catch (Exception e)
e.printStackTrace();
192.168.0.3 is my computer IP address, I did not put localhost because I want to run on a mobile device.
When I entered localhost:3030/ds/sparql or 192.168.0.3/ds/sparql
or if I replace sparql with query in the browser I got
Error 404: Service Description: /ds/query
android fuseki
android fuseki
asked Mar 27 at 9:29
RawanRawan
62 bronze badges
62 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373791%2fsparql-query-using-fuseki-server-in-android%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55373791%2fsparql-query-using-fuseki-server-in-android%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown