Android_HTML解析器_jsoup

來源:互聯網
上載者:User

jsoup 

Jsoup

在這個網站上你可以找到一些說明,

jsoup

   1. 

   2. 

   3. 

   jsoup

下面是一個純

 

[java] view plaincopy
  1. public static void main(String[] args) throws IOException {    
  2.   try {   
  3.             Document doc = Jsoup.connect("http://passover.blog.51cto.com/").get();   
  4.             System.out.println(doc.title());   
  5.             Elements eles = doc.select("div.artHead");   
  6.             System.out.println(eles.first().select("h3[class=artTitle]"));   
  7.         } catch (IOException e) {   
  8.             e.printStackTrace();   
  9.         }           
  10.     }    

 這是因為

// 

[java] view plaincopy
  1. StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()    
  2.         .detectDiskReads()    
  3.         .detectDiskWrites()    
  4.         .detectNetwork()   // or .detectAll() for all detectable problems    
  5.         .penaltyLog()    
  6.         .build());    
  7. StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()    
  8.         .detectLeakedSqlLiteObjects()    
  9.         .detectLeakedClosableObjects()    
  10.         .penaltyLog()    
  11.         .penaltyDeath()    
  12.         .build());    

 另一種是啟動線程執行下載任務:

   public void onCreate(Bundle savedInstanceState) {

      super.onCreate(savedInstanceState);  

      setContentView(R.layout.main);  

      // 

      new Thread(downloadRun).start();  

  }  

  /** 

   * 

   */  

  Runnable downloadRun = new Runnable(){  

@Override  

public void run() {  

    // TODO Auto-generated method stub  

    updateListView();  

}  

  };

在報錯的方法前加

// 

Jsoup

Connect()

Connection

Jsoup

。同樣也可以調用

body(),head(),nodeName(),title(),title(String title)

Element first():

String  text():

Element get(int index);

String  attr(String attributeKey);

text(); 返回

getElementsByClass(String class);

getAllElements();

getElementsByAttribute(String key);

Elements select(String selector); 

異常的詳細資料如下:

Exception Details

進行多線程編程時,經常需要在主線程之外的一個單獨的線程中進行某些處理,然後更新使用者介面顯示。但是,在主線線程之外的線程中直接更新頁面顯示的問題是:系統會報這個異常

也就是說必須在程式的主線程

[java] view plaincopy
  1. private Handler mHandler = new Handler(){    
  2.          @Override    
  3.          public void handleMessage(Message msg){    
  4.              switch (msg.what){    
  5.                 case UPDATE_UI:{    
  6.                 Log.i("TTSDeamon", "UPDATE_UI");    
  7.                 showTextView.setText(editText.getText().toString());    
  8.                 ShowAnimation();    
  9.                 break;    
  10.                 }    
  11.                  default:    
  12.                  break;    
  13.            }    
  14.        }    
  15.  }  

demo地址0分下載:http://download.csdn.net/detail/zqiang_55/4764266

同時推薦一個應用:http://www.talkphone.cn/Down/Soft/Android/Detail/49172_0.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.