进行网页调用时,例如:
URL redfinURL = new URL("http://www.facebook.com");
URLConnection conn = redfinURL.openConnection();
conn.addRequestProperty("User-Agent", "Mozilla/4.76");
InputStream is = conn.getInputStream();
Reader isReader = new InputStreamReader(is);
有没有办法在页面完全呈现之前不拉回页面?
谢谢!