Using Java in Eclipse IDE, I want to extract the "Date of Listing" information (bottom left box under "Company Information") from an NSE Market Tracker webpage and save it to a text file.
For example, take the following webpage: https://www.nseindia.com/companytracker/cmtracker.jsp?symbol=TCS&cName=cmtracker_nsedef.css
I want to read "25-Aug-2004" (Date of Listing) and save the date to a text file.
How do I code this?
I tried using the FileUtils.copyURLToFile(url, file) function but the Date of Listing and other company information within the same box do not get copied; they do not appear in the HTML source code.
I don't have any experience working with HTML/JavaScript, so please pardon my ignorance on that front.