【Android-008】【Html源文件查看器】

Android学习目录

项目源码下载

Html源文件查看器

  • 发送GET请求
        URL url = new URL(path);
        //获取连接对象
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        //设置连接属性
        conn.setRequestMethod("GET");
        conn.setConnectTimeout(5000);
        conn.setReadTimeout(5000);
        //建立连接,获取响应吗
        if(conn.getResponseCode() == 200){

        }
  • 获取服务器返回的流,从流中把html源码读取出来
        byte[] b = new byte[1024];
        int len = 0;
        ByteArrayOutputStream bos = new ByteArrayOutputStream();
        while((len = is.read(b)) != -1){
            //把读到的字节先写入字节数组输出流中存起来
            bos.write(b, 0, len);
        }
        //把字节数组输出流中的内容转换成字符串
        //默认使用utf-8
        text = new String(bos.toByteArray());

乱码的处理

  • 乱码的出现是因为服务器和客户端码表不一致导致
        //手动指定码表
        text = new String(bos.toByteArray(), "gb2312");

你可能感兴趣的:(html,android,乱码)