JsoupTest.java

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

import java.io.File;
import java.io.IOException;

/**
 * Created by Administrator on 2017/5/26.
 */
public class JsoupTest {
    public static void main(String args[]) {

        // Parse HTML String using JSoup library
        String HTMLSTring = "<!DOCTYPE html>"
                + "<html>"
                + "<head>"
                + "<title>JSoup Example</title>"

                + "</head>"
                + "<body>"
//                + "<table>"
//                + "<tr>"
//                + "<td>"
                + "<h1>"
                + "HelloWorld"
                + "<h1>"
//                + "<td>"
//                + "<tr>"
//                + "<table>"
                + "</body>"
                + "</html>";

        Document html = Jsoup.parse(HTMLSTring);
        String title = html.title();
        String h1 = html.body().getElementsByTag("h1").text();

        System.out.println("Input HTML String to JSoup :" + HTMLSTring);
        System.out.println("After parsing, Title : " + title);
        System.out.println("Afte parsing, Heading : " + h1);

        // JSoup Example 2 - Reading HTML page from URL
        Document doc = null;
//        String h = null;
        try {
            doc = Jsoup.connect("http://www.baidu.com/").get();
            title = doc.title();

//            h = doc.html();
        } catch (IOException e) {
            e.printStackTrace();
        }

        System.out.println("Input HTML String to JSoup :" + doc.html());
        System.out.println("Jsoup Can read HTML page from URL, title : " + title);

        // JSoup Example 3 - Parsing an HTML file in Java
        //Document htmlFile = Jsoup.parse("login.html", "ISO-8859-1"); // wrong
        Document htmlFile = null;
        try {
            htmlFile = Jsoup.parse(new File("D:\\Test\\228.html"), "UTF-8");
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } // right
        title = htmlFile.title();
        Element div = htmlFile.getElementById("team_box");



        //测试1
        /*Elements div1 = htmlFile.getElementsContainingText("工商注册");
        Elements div2 = htmlFile.getElementsMatchingText("法定代表人");*/

//        String cssClass = div.className(); // getting class form HTML element

        System.out.println("Jsoup can also parse HTML file directly");
        System.out.println("title : " + title);
//        System.out.println("class of div tag : " + cssClass);


        //增加内容
        Elements spans = htmlFile.select("[span='注册号:']");
        System.out.println("\n" + spans.toString() + "\n");


        //测试1
        /*System.out.println("found: " + div1);
        System.out.println("found: " + div2);*/
    }

}

  

转载于:https://www.cnblogs.com/tangyongathuse/p/6932628.html

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值