HTML 코드를 가져올 수 있는 Android 프로그래밍 방법

1206 단어
본고의 실례는 안드로이드 프로그래밍이 웹 주소 HTML 코드를 얻는 방법을 설명하였다.여러분에게 참고하도록 공유하겠습니다. 구체적으로는 다음과 같습니다.

/**
*
* @param aUrl   
* @param aEncode   
* @return    HTML  
* @throws Exception       
*/
public String getHTML(String aUrl, String aEncode) throws Exception {
    URL url = new URL(aUrl);
    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    conn.setConnectTimeout(5000);
    conn.setRequestMethod("GET");
    if (conn.getResponseCode() == 200){
      InputStream inputStream = conn.getInputStream();
      ByteArrayOutputStream outStream = new ByteArrayOutputStream();
      byte[] buffer = new byte[1024];
      int len = 0;
      while( (len = inputStream.read(buffer)) != -1){
        outStream.write(buffer, 0, len);
      }
      String htmlStr = new String(outStream.toByteArray(), aEncode);
      inputStream.close();
      outStream.close();
      return htmlStr;
    }
    return null;
}


안드로이드 관련 내용에 관심이 있는 더 많은 독자들은 본 사이트의 주제를 보실 수 있습니다.,,,,,,,,,,,
본고에서 서술한 것이 여러분의 안드로이드 프로그램 설계에 도움이 되었으면 합니다.

좋은 웹페이지 즐겨찾기