private WebView webview;public void onCreate(Bundle icicle){    // bla bla bla    // here you initialize your webview    webview = new WebView(this);    webview.setWebViewClient(new YourWebClient());}// this will be the webclient that will manage the webviewprivate class YourWebClient extends WebViewClient{    // you want to catch when an URL is going to be loaded    public boolean  shouldOverrideUrlLoading  (WebView  view, String  urlConection){        // here you will use the url to access the headers.        // in this case, the Content-Length one        URL url;        URLConnection conexion;        try {            url = new URL(urlConection);            conexion = url.openConnection();            conexion.setConnectTimeout(3000);            conexion.connect();            // get the size of the file which is in the header of the request            int size = conexion.getContentLength();        }        // and here, if you want, you can load the page normally        String htmlContent = "";        HttpGet httpGet = new HttpGet(urlConection);        // this receives the response        HttpResponse response;        try {            response = httpClient.execute(httpGet);            if (response.getStatusLine().getStatusCode() == 200) {                // la conexion fue establecida, obtener el contenido                HttpEntity entity = response.getEntity();                if (entity != null) {                    InputStream inputStream = entity.getContent();                    htmlContent = convertToString(inputStream);                }            }         } catch (Exception e) {}         webview.loadData(htmlContent, "text/html", "utf-8");         return true;    }    public String convertToString(InputStream inputStream){        StringBuffer string = new StringBuffer();        BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));        String line;        try {            while ((line = reader.readLine()) != null) {                string.append(linea + "\n");            }        } catch (IOException e) {}        return string.toString();    }} 

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. coredump在Android上的应用
  2. Android(安卓)虚拟按键驱动实现
  3. android 信息(mms)的故事(五)-- 发彩信
  4. android支持有线网--网络上看到
  5. Android(安卓)源代码编后的目录分析
  6. android中实现返回首页功能
  7. android 存储简要分析
  8. Haisi3716C (海思)源代码 编译并烧写
  9. Android(安卓)3D引擎之min3D--支持材质和
  10. android系统学习笔记六