文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android使用Jsoup解析Html表格的方法

2022-06-06 09:21

关注

本文实例讲述了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<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()
}

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

您可能感兴趣的文章:android Jsoup获取网站内容 android获取新闻标题实例android使用Jsoup 抓取页面的数据Android开发之利用jsoup解析HTML页面的方法Java实现爬虫给App提供数据(Jsoup 网络爬虫)Java中使用开源库JSoup解析HTML文件实例crawler4j抓取页面使用jsoup解析html时的解决方法Jsoup解析HTML实例及文档方法详解Jsoup解析html实现招聘信息查询功能


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯