What is the preferred method of fetching a url and it's content in app-engine?
This is how I'm doing it now:
URL google = new URL("http://www.google.com");
google.openStream();
and this is the warning I get
Mar 6, 2010 4:11:50 AM org.apache.commons.httpclient.HttpMethodBase getResponseBody
WARNING: Going to buffer response body of large or unknown size.
Using getResponseBodyAsStream instead is recommended.