Uses of Class
de.aitools.aq.webdownload.DownloaderException

Packages that use DownloaderException
de.aitools.aq.webdownload   
 

Uses of DownloaderException in de.aitools.aq.webdownload
 

Methods in de.aitools.aq.webdownload that throw DownloaderException
 java.lang.String Downloader.getContentType(java.lang.String url)
          Returns the data of the Content-Type HTTP response header field for the given url or null if no such field exists.
 java.lang.String Downloader.getContentType(java.net.URL url)
          Returns the data of the Content-Type HTTP response header field for the given url or null if no such field exists.
 java.util.Map<java.lang.String,java.util.List<java.lang.String>> Downloader.getHeaders(java.lang.String url)
          Convenience method to detect the content type of the resource designated by url.
 java.io.File WgetDownloader.load(java.lang.String url)
          Loads the data designated by url and creates and returns a file object which can be used to access the data.
abstract  java.io.File Downloader.load(java.lang.String url)
          Loads the data designated by url and creates and returns a file object which can be used to access the data.
 java.io.File WgetDownloader.load(java.lang.String url, java.io.File dir)
          Loads the data designated by url to the directory designated by dir.
abstract  java.io.File Downloader.load(java.lang.String url, java.io.File dir)
          Loads the data designated by url to the directory designated by dir.
 java.io.File WgetDownloader.load(java.net.URL url)
          Loads the data designated by url and creates and returns a file object which can be used to access the data.
abstract  java.io.File Downloader.load(java.net.URL url)
          Loads the data designated by url and creates and returns a file object which can be used to access the data.
 java.io.File WgetDownloader.load(java.net.URL url, java.io.File dir)
          Loads the data designated by url to the directory designated by dir.
abstract  java.io.File Downloader.load(java.net.URL url, java.io.File dir)
          Loads the data designated by url to the directory designated by dir.
static void DownloaderExampleUsage.main(java.lang.String[] args)