java实现QQ空间日志列表获取

news/2024/10/31 3:29:25/

可以下载任意QQ用户的日志,以html文档形势保存。(该用户必须开放所有用户访问权限)

效果如图:

 

/**
* 日志下载修正版核心功能类
* 
* @author wensefu.jerry.Ling<br/>
*         wrote on 2011-1-26
*/
public class Kernel {
private static final String baseUri = "http://b.qzone.qq.com/cgi-bin/blognew/blog_get_titlelist?";
private static final String blogdetailUri = "http://b.qzone.qq.com/cgi-bin/blognew/blog_output_data?bdm=b.qzone.qq.com&";
private static final String charset = "gb2312";
public Kernel() {
}
/**
* 获取用户日志数量
* 
* @param qq
* @return
*/
public int getBlogNo(String qq) {
HttpClient client = null;
HttpMethod method = null;
int result = 0;
String getUri = baseUri
+ "uin="
+ qq
+ "&vuin=0&property=GoRE&category=&numperpage=1&sorttype=0&arch=0&pos=0&direct=1";
method = new GetMethod(getUri);
client = new HttpClient();
int status = 0;
try {
status = client.executeMethod(method);
} catch (HttpException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
if (status != HttpStatus.SC_OK) {
return 0;
}
InputStream is = null;
InputStreamReader isr = null;
BufferedReader br = null;
try {
is = method.getResponseBodyAsStream();
if (is == null)
return 0;
isr = new InputStreamReader(is);
br = new BufferedReader(isr);
String temp = null;
while (true) {
temp = br.readLine();
if (temp == null)
return 0;
if (temp.contains("title_num")) {
break;
}
}
String cnt = temp.substring(12, temp.length() - 1);
result = Integer.parseInt(cnt);
} catch (IOException e) {
return 0;
} finally {
method.releaseConnection();
try {
br.close();
isr.close();
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return result;
}
/**
* 获取所有日志的ID,标题信息
* 
* @param qq
* @return
*/
public List<Blog> getAllBlog(String qq) {
HttpClient client = new HttpClient();
HttpMethod method = null;
List<Blog> result = new ArrayList<Blog>();
List<String> blogIds = new ArrayList<String>();
List<String> blogTitles = new ArrayList<String>();
int cnt = 0;
int pos = 0; //
String getUri = null;
int status = 0;
int blogNo = getBlogNo(qq);
while (cnt < blogNo) {
getUri = baseUri + "uin=" + qq
+ "&vuin=0&property=GoRE&category=&numperpage=100&pos="
+ pos + "&direct=1";
method = new GetMethod(getUri);
try {
status = client.executeMethod(method);
} catch (HttpException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
if (status != HttpStatus.SC_OK) {
break;
}
InputStream is = null;
InputStreamReader isr = null;
BufferedReader br = null;
try {
is = method.getResponseBodyAsStream();
isr = new InputStreamReader(is);
br = new BufferedReader(isr);
String temp = null;
while ((temp = br.readLine()) != null) {
if (temp.contains("/"title/":")) {
int index = temp.lastIndexOf("/"title/":/"");
String title = temp.substring(index + 9,
temp.length() - 3);
blogTitles.add(title);
}
if (temp.contains("{/"blogid/":")) {
int index = temp.lastIndexOf("{/"blogid/":");
String blogid = temp.substring(index + 10,
temp.length() - 1);
blogIds.add(blogid);
cnt++;
}
}
} catch (IOException e) {
e.printStackTrace();
} finally {
method.releaseConnection();
try {
br.close();
isr.close();
is.close();
} catch (IOException e) {
e.printStackTrace();
}
}
pos += 100;
}
for (int i = 0; i < blogIds.size(); i++) {
Blog blog = new Blog(blogIds.get(i), blogTitles.get(i));
result.add(blog);
}
return result;
}
/**
* 以html格式保存日志到本地
* 
* @param qq
*/
public void saveBlogtoLocal(String basepath, String qq, int index) {
List<Blog> blogs = getAllBlog(qq);
if (blogs == null) {
System.err.println("获取日志信息失败或用户没有日志");
return;
}
HttpClient client = new HttpClient();
HttpMethod method = null;
String getUri = null;
getUri = blogdetailUri
+ "blogid="
+ blogs.get(index).getBlogid()
+ "&imgdm=ctc.qzs.qq.com&mode=2&numperpage=15&property=GoRE&uin="
+ qq;
method = new GetMethod(getUri);
method.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,
charset);
int status = 0;
try {
status = client.executeMethod(method);
} catch (HttpException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
if (status != HttpStatus.SC_OK) {
return;
}
BufferedWriter bw = null;
try {
String toWrite = method.getResponseBodyAsString();
if (toWrite != null) {
String title = blogs.get(index).getTitle();
File path = new File(basepath + "//" + qq + "//");
if (!path.exists()) {
path.mkdir();
}
File file = new File(path, (index + 1) + "-" + title + ".html");
if (!file.exists()) {
file.createNewFile();
}
bw = new BufferedWriter(new FileWriter(file));
bw.write(toWrite);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
method.releaseConnection();
if (bw != null) {
try {
bw.flush();
bw.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
public static void main(String[] args) throws IOException {
new Kernel().saveBlogtoLocal("e:/blogs", "123456", 0);
}
}
 
 

程序下载地址:http://code.google.com/p/qhelperx/downloads/list

源码已经放到google svn上托管,有兴趣的朋友可以一起研究

刷人气功能之一。


http://www.ppmy.cn/news/266973.html

相关文章

ipv6无网络访问权限可行解决方案

原文地址&#xff1a;http://www.xitongtiandi.net/wenzhang/win10/12654.html Win10专业版下ipv6无网络访问权限解决方案&#xff08;只在win10专业版下做了测试&#xff0c;win7和win8.1待测试&#xff09; 1、首先打开 https://support.microsoft.com/en-us/kb/929852 选择…

QQ空间爬虫分享(2016年11月18日更新)

前言&#xff1a; 上一篇文章&#xff1a;《QQ空间爬虫分享&#xff08;一天可抓取 400 万条数据&#xff09;》 Github地址&#xff1a;QQSpider Q群讨论&#xff1a; 很抱歉QQSpider这个爬虫过了这么久才作更新&#xff0c;同时也很感谢各位同学的肯定和支持&#xff01;…

公开说说别人看不到_空间设置了权限说说所有人可见

说说设置为所有人可见,但是空间设置有权限的人才可进,那说说是不是所有人可以见? 不是,有权限的人才可以看到,因为说说设置的所有可见是针对可以访问你空间的所有人,不是说别人也可以看到 空间说说怎么设置所有人可见 1、登录QQ空间,进入QQ空间主页面2、把鼠标放在说说的…

html显示空间图片,qq空间显示不出来 为什么QQ空间有些图片显示不了

为什么QQ空间发表的说说 别人看不到 怎么显示不出详情请查看视频回答 QQ空间图标为什么显示不出来 是不是隐藏掉了 你点自己的资料 点图标最右边的图片管理看看 或者 你根本就没申请Q空间 点你自己资料的灰暗的空间图标申请一下把 我可以打开QQ空间&#xff0c;而且一进去的个人…

看访问受限的QQ空间

要看访问受限的QQ空间很简单啊,用手工. 在地址栏里输入 http://qqxoo.com/main.html?qqidQQ号 这样就可能看对方的空间 http://qqshow-user.tencent.com/QQ号/11/00 看MM的QQ绣 http://shuqian.qq.com/QQ号/ QQ 书签 http://h.qbar.qq.com/QQ号 这个是看她的Q吧 ht…

Python爬虫QQ空间好友说说

#Python爬虫QQ空间好友说说 先看效果:(轻微马赛克) 我的好友大概接近一百人&#xff0c;这里总共有3.5w条数据 ##具体步骤&#xff1a; ####**问题分析&#xff1a;** - QQ空间是动态网页&#xff0c;那么直接获得网页源码就没戏了&#xff0c;只能通过模拟浏览器 - 访问QQ空…

计算机管理里边设置访问权限,电脑访问权限设置_电脑软件访问权限设置

2016-12-26 17:43:40 电脑设置访问权限的方法:1、在“开始”菜单“运行”中输入:gpedit.msc,运行组策略编辑器程序。 2、在编辑器的窗口的左侧窗格中逐级展开“计算机配置”--“Windows... 2016-11-30 14:47:25 1.本地连接的IP和DNS设置成自动获取2.可以尝试把路由器恢复出厂…

用Python爬取QQ空间说说和相册!还不让我访问!

QQ 空间在 2005 年被腾讯开发&#xff0c;已经经历了 15 个年头&#xff0c;在还没有微信的年代&#xff0c;看网友发表的心情、心事、照片大多都在 QQ 空间的里。它承载了80、90 后的大量青春&#xff0c;下面我们一起用 selenium 模块导出说说和相册回忆青春吧 安装 seleniu…