Jsoup进行网页的抓取

引入Jsoup和分词器的JAR包

<dependency>
	<groupId>org.jsoup</groupId>
	<artifactId>jsoup</artifactId>
	<version>1.10.2</version>
</dependency>
<!--分词-->
		<!-- https://mvnrepository.com/artifact/com.hankcs/hanlp -->
		<dependency>
			<groupId>com.hankcs</groupId>
			<artifactId>hanlp</artifactId>
			<version>portable-1.7.2</version>
		</dependency>

工具类


import com.hankcs.hanlp.HanLP;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

import java.io.IOException;
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class HtmlUtil {
    private static String url ="https://www.baidu.com/s";
    public static void main(String[] args) {
        String rela = GetRela("哥哥的儿子");
        System.out.println(rela);
    }
    public static String GetRela(String wd) {
        StringBuffer English=new StringBuffer();
        StringBuffer Chinese=new StringBuffer();
        try {
            Document doc = Jsoup.connect(url+"?wd="+wd+"怎么称呼") .get();
            Elements body = doc.getElementsByTag("body");
            for (Element Text : body) {
                String text = Text.text();
                for(int i=0;i<text.length();i++) {
                    char c=text.charAt(i);
                    if(c >= 0x4E00 &&  c <= 0x9FA5) {
                        Chinese.append(c);
                    }
                    else if ((c>='a' && c<='z') || (c>='A' && c<='Z') || c==' ') {
                        English.append(c);
                    }
                }
            }
        }
        catch (IOException e) {
            e.printStackTrace();
        }
        String EnglishText=new String(English);
        String ChineseText=new String(Chinese);
        String code = null;
        String regString = ""+wd+"怎么称呼"+"([\\d\\D]*)来自百度百科";
        Pattern pattern = Pattern.compile(regString);
        Matcher matcher = pattern.matcher(ChineseText);
        if (matcher.find()) {
            code = matcher.group(1);
            List<String> list = HanLP.extractKeyword(code, 2);
            return list.get(0);
        }
        return null;
    }
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值