本文实例讲述了Android使用Jsoup解析Html表格的方法。分享给大家供大家参考,具体如下:

看代码吧,可解析表中的label text button 自己根据需要再添加,呵呵

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 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()}

希望本文所述对大家Android程序设计有所帮助。

更多相关文章

  1. Android-Fresco系列6 图片解码
  2. Data Storage -- Using Databases[SDK翻译]
  3. android中获取字符串的宽度
  4. Android---58---初学GPS定位
  5. android > ListView > 加载 网络/assets图片
  6. android socket wifi 连接PC实现简单的PPT控制器(源码)
  7. 6.2、Android中向Internet发送xml数据
  8. Android(安卓)常见的几种加密方式RSA、CBC的集成
  9. Android(安卓)HandlerThread 消息循环机制之源码解析

随机推荐

  1. 打造Android的中文Siri语音助手(一)——
  2. Android偷偷进了PC村,Google是无心插柳还
  3. Android图像滤镜框架GPUImage从配置到应
  4. Android应用程序线程消息循环模型分析
  5. Android线程模型解析(包括UI的更新)
  6. [Android]使用ActivityGroup来切换Activi
  7. >>>PayPal支持Android与iPhone的说明 请
  8. android 内部文件读取
  9. Android-自定义滑动菜单(抽屉效果)
  10. android如何实现类似ios点击状态栏回到顶