0

Lets say i have an table in an android app, and i have a website with a table (text & hyperlinks) that gets updated hourly. is there a simple way to get the data from the website table to the android table thanks.

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115

1 Answers1

0

You can do an HTTP get request to the website with the table and parse it as a string, extracting the text within the <table></table> elements. Perhaps the following post may help https://stackoverflow.com/a/14418351/2557554

Community
  • 1
  • 1
David Yee
  • 3,515
  • 25
  • 45