This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.*; | |
import java.net.MalformedURLException; | |
import java.net.URL; | |
import java.net.URLConnection; | |
/** | |
* This is an example-implementation, showing how to download a raw-RSS | |
* feed from a web-address and how to write it's content to a File.</p> | |
* All Exceptions are handled internally by their corresponding methods. | |
* In a real-use scenario, this might be the wrong way, since your |