zoukankan      html  css  js  c++  java
  • java爬虫简单实现

    以下为源码

    package WebSpider;
    
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.net.MalformedURLException;
    import java.net.URL;
    import java.nio.charset.Charset;
    import java.util.regex.Matcher;
    import java.util.regex.Pattern;
    
    /**
     * 网络爬虫
     * @author Vcanccc
     *
     */
    public class WebSpiderTest {
        /**
         * 获得urlStr对应网络内容
         * @param urlStr
         * @return
         */
        public static String getURLContent(String urlStr, String charset){
            StringBuilder sb = new StringBuilder();
            try {
                URL url = new URL(urlStr);
                BufferedReader reader = new BufferedReader(new InputStreamReader(url.openStream(),Charset.forName(charset)));
                String temp = "";
                while((temp = reader.readLine()) != null)        
                {
                    sb.append(temp);
                }
            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return sb.toString();
        }
        
        
        public static void main(String[] args) {
            String destStr = getURLContent("https://www.taobao.com","utf-8");
            
        //    Pattern p = Pattern.compile("<a[\s\S]+?</a>");
            Pattern p = Pattern.compile("href="(.+?)"");
            Matcher m = p.matcher(destStr);
            
            while(m.find()){
                System.out.println(m.group(1));
            }
        }
    }
  • 相关阅读:
    SQLServer 知识点
    Entity转换为ViewModel时提供的一种转换方法
    Linq中IGrouping转换为IQueryable
    封装整形属性时对应到枚举
    新的转换列表方式
    工作态度
    EasyFrame
    NewCloud
    将博客搬至CSDN
    Html的语义化
  • 原文地址:https://www.cnblogs.com/Vcanccc/p/5703298.html
Copyright © 2011-2022 走看看