Android開發之利用jsoup解析HTML頁面的方法_Android

來源:互聯網
上載者:User

本文執行個體講述了Android利用jsoup解析HTML頁面的方法。分享給大家供大家參考,具體如下:

這節主要是講解jsoup解析HTML頁面。由於在android開發過程中,不可避免的涉及到web頁面的抓取,解析,展示等等,所以,在這裡我主要展示下利用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("main_navi");一定要找對位置,才能得到正確的結果。下面就是主要的預覽效果:

更多關於Android相關內容感興趣的讀者可查看本站專題:《Android調試技巧與常見問題解決方案匯總》、《Android開發入門與進階教程》、《Android多媒體操作技巧匯總(音頻,視頻,錄音等)》、《Android基本組件用法總結》、《Android視圖View技巧總結》、《Android布局layout技巧總結》及《Android控制項用法總結》

希望本文所述對大家Android程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.