android通过Jsoup解析Html表格

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) {//循环表下的行 tr对象
			TableRow tableRow = new TableRow(this);
			Elements cols = row.children();
			for (Element col : cols) {//循环行下的列 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()
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值