Android 개발 의 jsoup 를 이용 하여 HTML 페이지 를 분석 하 는 방법

3896 단어 AndroidjsoupHTML
이 사례 는 안 드 로 이 드 가 jsoup 를 이용 하여 HTML 페이지 를 분석 하 는 방법 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
이 절 은 주로 jsoup 해석 HTML 페이지 를 설명 합 니 다.안 드 로 이 드 개발 과정 에서 웹 페이지 의 캡 처,해석,전시 등 이 불가피 하기 때문에 jsoup jar 가방 을 이용 하여 cnbeta.com 사이트 의 화제 분 류 를 캡 처 하 는 인 스 턴 스 를 보 여 드 리 겠 습 니 다.
다음은 주요 코드 입 니 다.사용 과 간단 하기 때문에 저 는 더 이상 말 하지 않 겠 습 니 다.

package com.android.web;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.apache.http.util.ByteArrayBuffer;
import org.apache.http.util.EncodingUtils;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ListView;
import android.widget.SimpleAdapter;
public class _GetWebResoureActivity extends Activity {
  Document doc;
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);
    findViewById(R.id.button1).setOnClickListener(new OnClickListener() {
      @Override
      public void onClick(View v) {
        load();
      }
    });
  }
  protected void load() {
    try {
      doc = Jsoup.parse(new URL("http://www.cnbeta.com"), 5000);
    } catch (MalformedURLException e1) {
      e1.printStackTrace();
    } catch (IOException e1) {
      e1.printStackTrace();
    }
    List<Map<String, String>> list = new ArrayList<Map<String, String>>();
    Elements es = doc.getElementsByClass("main_navi");
    for (Element e : es) {
      Map<String, String> map = new HashMap<String, String>();
      map.put("title", e.getElementsByTag("a").text());
      map.put("href", "http://www.cnbeta.com"
          + e.getElementsByTag("a").attr("href"));
      list.add(map);
    }
    ListView listView = (ListView) findViewById(R.id.listView1);
    listView.setAdapter(new SimpleAdapter(this, list, android.R.layout.simple_list_item_2,
        new String[] { "title","href" }, new int[] {
        android.R.id.text1,android.R.id.text2
    }));
  }
  /**
   * @param urlString
   * @return
   */
  public String getHtmlString(String urlString) {
    try {
      URL url = null;
      url = new URL(urlString);
      URLConnection ucon = null;
      ucon = url.openConnection();
      InputStream instr = null;
      instr = ucon.getInputStream();
      BufferedInputStream bis = new BufferedInputStream(instr);
      ByteArrayBuffer baf = new ByteArrayBuffer(500);
      int current = 0;
      while ((current = bis.read()) != -1) {
        baf.append((byte) current);
      }
      return EncodingUtils.getString(baf.toByteArray(), "gbk");
    } catch (Exception e) {
      return "";
    }
  }
}
주의 코드:Elements es=doc.getElementsByClass("mainnavi");반드시 위 치 를 잘 찾 아야 정확 한 결 과 를 얻 을 수 있다.다음은 주요 미리 보기 효과 입 니 다:

더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.,,,,,,,
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기