DefaultHttpClient httpclient = new DefaultHttpClient();
HttpGet httpget = new HttpGet("http://www.google.com/");
HttpResponse response = httpclient.execute(httpget);
HttpEntity entity = response.getEntity();
System.out.println(response.getStatusLine());
if (entity != null) {
entity.consumeContent();
}
相关文章
- 08-01在人类小鼠细胞系中的细胞特异性选择性剪切分析之统计方法篇
- 08-017、配置文件、封装读取配置文件的方法
- 08-01华为大神花费5个月打造的这份714页学习笔记系列!Android面试题及解析
- 08-01js深浅拷贝方法
- 08-01python-用底部编辑线,状态栏和滚动历史记录实现“控制台外壳”的最佳方法?
- 08-01<command-line>:0:12: fatal error: curses.h: No such file or directory 报错解决方法
- 08-01子类继承之后添加新的属性出现报错及解决方法
- 08-01Android Dagger-没有no-args构造函数的模块
- 08-01dagger:定义在其构造函数中使用上下文的可注入类的正确方法
- 08-01Android-Dagger 2不生成组件