java 爬虫 微博_java爬虫爬取微博热搜榜

package demo;

import java.io.IOException;

import java.io.UnsupportedEncodingException;

import java.net.URLDecoder;

import java.util.regex.Matcher;

import java.util.regex.Pattern;

import javax.print.Doc;

import org.apache.commons.lang3.StringEscapeUtils;

import org.apache.http.HttpEntity;

import org.apache.http.HttpResponse;

import org.apache.http.client.ClientProtocolException;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.impl.client.DefaultHttpClient;

import org.apache.http.impl.client.TargetAuthenticationStrategy;

import org.apache.http.util.EntityUtils;

import org.jsoup.Jsoup;

import org.jsoup.nodes.Document;

import org.jsoup.nodes.Element;

import org.jsoup.select.Elements;

public class weibo_hotnews {

public static String webheader="http://s.weibo.com/weibo/";

public static void main(String []args) throws UnsupportedEncodingException{

String [][]result=patter_script(Analysis_page(get_page("http://s.weibo.com/top/summary?cate=realtimehot")));

for (int i = 0; i < result.length; i++) {

System.out.println((i+1)+" "+result[i][0]+" "+result[i][1]);

}

}

public static String download_page(String url){

String content=null;

//创建客户端

DefaultHttpClient httpClient=new DefaultHttpClient();

HttpGet httpGet=new HttpGet(url);

HttpResponse response;

try {

response = httpClient.execute(httpGet);

HttpEntity entity=response.getEntity();

if (entity!=null) {

content=EntityUtils.toString(entity,"utf-8");

EntityUtils.consume(entity);

}

} catch (ClientProtocolException e) {

// TODO 自动生成的 catch 块

e.printStackTrace();

} catch (IOException e) {

// TODO 自动生成的 catch 块

e.printStackTrace();

}finally {

httpClient.getConnectionManager().shutdown();

}

return content;

}

public static Document get_page(String url){

try {

return Jsoup.connect(url).get();

} catch (IOException e) {

// TODO 自动生成的 catch 块

e.printStackTrace();

System.out.println("url或网络连接错误");

return null;

}

}

public static String Analysis_page(Document page_html){

Elements links=page_html.getElementsByTag("script");

String allstring=null;

int tag=0;

for(Element link:links){

String script=link.toString();

if (script.length()>tag) {

tag=script.length();

allstring=script;

}

}

return allstring;

}

public static String[][] patter_script(String tag){

String [][] result=new String[50][2];

int i=0,j=0;

Pattern pattern = Pattern.compile("class=\\\\\"star_name\\\\\">\\\\n (.*?)");

Matcher matcher = pattern.matcher(tag);

while (matcher.find()) {

result[i][j]=StringEscapeUtils.unescapeJava(matcher.group(2));

j++;

result[i][j]=webheader+matcher.group(1);

j=0;i++;

}

return result;

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值