I am looking for a Java tool to scrape a CSV from a website and then parse the data. Jsoup seems like a viable option. Is there a way to scrape a CSV file and then save the information to a database using Jsoup?
Or is it strictly for scraping HTML code? Thanks.
Apache Commons CSVis a new project this year for parsing and generating comma-separated values (CSV) and TAB-delimited files. Release 1.1 just arrived this month (2014-11). Similar to JSoup in that it uses a simple clean API to create objects representing the parsed data.