saibbyweb
saibbyweb

Reputation: 3244

Android app retrieving data from MySql database?

Can an android application retrieve data from a remote MySql database and show the retrieved data within the app canvas? I own a website whose articles remain stored in MySql database, i want the app to retrieve data from my website's database and show the article in any particular fashion? Is there a way out?

Upvotes: 0

Views: 136

Answers (1)

cagcak
cagcak

Reputation: 4170

If your website already uses the own database, instead of querying any data remotely you can retrive data from your website's fields or tags such as <div id="bodyTag">...</div> by using Jsoup HTML parser library.

Upvotes: 1

Related Questions