Android使用Jsoup解析Html表格的方法
更新時間:2015年12月29日 12:27:39 作者:q757989418
這篇文章主要介紹了Android使用Jsoup解析Html表格的方法,涉及Android中Jsoup的使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了Android使用Jsoup解析Html表格的方法。分享給大家供大家參考,具體如下:
看代碼吧,可解析表中的label text button 自己根據(jù)需要再添加,呵呵
import java.util.ArrayList;
import java.util.List;
import org.apache.http.NameValuePair;
import org.apache.http.message.BasicNameValuePair;
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.graphics.Color;
import android.os.Bundle;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TableLayout;
import android.widget.TableRow;
import android.widget.TextView;
import android.widget.Toast;
public class TableParseActivity extends Activity{
private Document doc;
private String html = null;
private TableLayout tableLayout;
private final int WC = ViewGroup.LayoutParams.WRAP_CONTENT;
private final int FP = ViewGroup.LayoutParams.FILL_PARENT;
private final int WIDTH = 80;
private String functionName,fields;
private List<NameValuePair> params;
private static String url;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.analyzing);
html = "需要解析的HTML字符串";
tableParse();
}
public void tableParse(){
doc = Jsoup.parse(html);
Elements trs = doc.select("tr");
tableLayout = (TableLayout)findViewById(R.id.tableLayout1);
TableLayout.LayoutParams p = new TableLayout.LayoutParams(FP, WC);
this.setTitle(doc.title());
for (Element row : trs) {//循環(huán)表下的行 tr對象
TableRow tableRow = new TableRow(this);
Elements cols = row.children();
for (Element col : cols) {//循環(huán)行下的列 td對象
Elements children = col.children();
for (Element child : children) {
if(child.tagName().equals("label")){
TextView textView = new TextView(this);
textView.setText(child.val());
textView.setTextColor(Color.BLACK);
tableRow.addView(textView);
}else if(child.tagName().equals("input")&&child.attributes().get("type").equals("text")){
EditText editText = new EditText(this);
editText.setText(child.val());
editText.setWidth(WIDTH);
tableRow.addView(editText);
String id = child.attributes().get("id");
if(id.length() > 0){
editText.setId(Integer.parseInt(child.attributes().get("id")));
}
}else if(child.tagName().equals("input")&&child.attributes().get("type").equals("button")){
Button button = new Button(this);
button.setText(child.val());
tableRow.addView(button);
fields = child.attributes().get("fields");
functionName = child.attributes().get("functionName");
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
//TODO onClick
}
});
}//end if(child.tagName().equals("input")&&child.attributes().get("type").equals("button"))
}//end for (Element child : children)
}//end for (Element col : cols)
tableLayout.addView(tableRow,p);
}//end for (Element row : rows)
}//end tableParse()
}
希望本文所述對大家Android程序設計有所幫助。
相關文章
Android 四種動畫效果的調(diào)用實現(xiàn)代碼
在這里, 我將每種動畫分別應用于四個按鈕為例,需要的朋友可以參考下2013-01-01
Android LeakCanary檢測內(nèi)存泄露原理
這篇文章主要介紹了分析LeakCanary檢測內(nèi)存泄露原理,幫助大家更好的理解和學習使用Android開發(fā),感興趣的朋友可以了解下2021-03-03
Android上實現(xiàn)easyconfig(airkiss)方法
本篇文章主要給大家講解了在Android系統(tǒng)上實現(xiàn)easyconfig(airkiss)的方法,有這方面需要的朋友參考學習下吧。2018-01-01
Android 使用Retrofit 以純二進制文件流上傳文件的操作代碼
文章介紹了如何在Android項目中使用Retrofit通過純二進制文件流上傳文件,包括單個文件流上傳和大文件分段上傳的方法,并詳細描述了需求協(xié)議、接口定義、RequestInterceptor的使用以及相關庫的調(diào)用,感興趣的朋友跟隨小編一起看看吧2024-11-11
安卓應用開發(fā)通過java調(diào)用c++ jni的圖文使用方法
這篇文章主要介紹了2013-11-11

