日期:2014-05-20 浏览次数:21083 次
//先保存到本地硬盘 HttpClient client = new HttpClient(); String htmlurl = "http://www.appannie.com/top/iphone/united-states/games/"; System.out.println(htmlurl); HttpMethod method = new GetMethod(htmlurl); try { client.executeMethod(method); System.out.println(method.getStatusLine()); String html = method.getResponseBodyAsString(); FileWriter fw = new FileWriter("C:\\download\\Top Charts - iPhone - United States - Games App Annie.htm" ); fw.write(html); fw.close(); } catch (HttpException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }