How can I download a file from its download link provided on a webpage using java? For example, I want to download this file: http://rss.cnn.com/rss/edition.rss from http://edition.cnn.com/services/rss/ using Java. What should be my initial steps to accomplish it?
Share
Technically RSS is a XML file. You can download it as a regular file if you want.. See if following link helps
How to download and save a file from Internet using Java?