Uses of Interface
org.htmlunit.DownloadedContent
-
Packages that use DownloadedContent Package Description org.htmlunit Framework classes (contains theWebClient
class which is the main entry point). -
-
Uses of DownloadedContent in org.htmlunit
Classes in org.htmlunit that implement DownloadedContent Modifier and Type Class Description static class
DownloadedContent.InMemory
Implementation keeping content in memory.static class
DownloadedContent.OnFile
Implementation keeping content on the file system.Methods in org.htmlunit that return DownloadedContent Modifier and Type Method Description static DownloadedContent
HttpWebConnection. downloadContent(java.io.InputStream is, int maxInMemory, java.io.File tempFileDirectory)
Reads the content of the stream and saves it in memory or on the file system.protected DownloadedContent
HttpWebConnection. downloadResponseBody(org.apache.http.HttpResponse httpResponse)
Downloads the response body.Methods in org.htmlunit with parameters of type DownloadedContent Modifier and Type Method Description protected WebResponse
HttpWebConnection. makeWebResponse(org.apache.http.HttpResponse httpResponse, WebRequest webRequest, DownloadedContent responseBody, long loadTime)
Converts an HttpMethod into aWebResponse
.Constructors in org.htmlunit with parameters of type DownloadedContent Constructor Description WebResponseData(DownloadedContent downloadedContent, int statusCode, java.lang.String statusMessage, java.util.List<NameValuePair> responseHeaders)
Constructor.
-