0

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?

1
  • please show us what you have tried first Commented May 24, 2014 at 11:57

1 Answer 1

1

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.

Sign up to request clarification or add additional context in comments.

1 Comment

You can type Document document = Jsoup.connect("yourURL").get(); to connect your website's specific area, then typing Elements body_text = document.select("div[id=bodyTag]"); will retrieve the tag field.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.