I want to develop an app to display the programs schedule of a specific channel from its website. I don’t have their website indeed, however, is there some other techniques to retrieve some specific data from a page, in my case the name of the program and its diffusion time. The website does not have an RSS feed too. Any ideas please? Thank you very much.
Share
Do you own the website? If not you need to scrape the website for it’s data and what you do with the data then may be subject to legal issues.
Scraping data is basically just ingesting the HTML and parsing out fields in the page that contain the information you want. It can be fairly simple if the website is structured well. Perhaps you could use JSOUP
See this thread for more details