说明

本实例可以监控聚划算的抢购button,在聚划算整点聚的时间到达时自己主动弹开页面(URL自定义)。

能够自己定义监控持续分钟数,同一时候还能够通过多线程加快刷新速度。

源代码

package com.itechzero.pricemonitor;

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.URI;
import java.net.URL;
import java.net.URLConnection;
import java.text.SimpleDateFormat;
import java.util.Date; /**
* PriceMonitor.java
*
* @author Techzero
* @Email techzero@163.com
* @Time 2014-5-21 下午1:24:30
*/
class MyThread extends Thread {
public void run() {
try {
// 此处參数为监控持续分钟数
PriceMonitor.monitorButton(10);
} catch (Exception e) {
e.printStackTrace();
}
}
}; public class PriceMonitor {
// 监控的商品URL
private static String URL = "http://detail.ju.taobao.com/home.htm? spm=608.2214381.3.1.AdPEjn&item_id=38260927591&id=10000002781939"; // 监视按钮
public static void monitorButton(int lastMinute) {
int nowMinute = Integer.parseInt(new SimpleDateFormat("mm").format(new Date()));
int endMinute = Integer.parseInt(new SimpleDateFormat("mm").format(new Date())) + lastMinute;
while (nowMinute < endMinute) {
nowMinute = Integer.parseInt(new SimpleDateFormat("mm").format(new Date()));
String result[] = getCurrentButtonAndForm(URL, "gb2312").split(",");
// 当前按钮状态
String currentButton = result[0];
// 立即抢 表单
//String form = result[1];
String nowTime = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(new Date());
System.out.println(nowTime + " - 如今按钮是 " + currentButton); if (currentButton == "立即抢" || currentButton.equals("立即抢") || currentButton == "还有机会" || currentButton.equals("还有机会")) {
System.out.println("赶紧下单! ");
try {
java.awt.Desktop.getDesktop().browse(new URI(URL));
} catch (Exception e) {
e.printStackTrace();
}
//doPost(form);
break;
} else if (currentButton == "卖光了" || currentButton.equals("卖光了") || currentButton.equals("已结束") || currentButton.equals("已结束")) {
System.out.println("下次再试吧。");
break;
} else {
System.out.println("还没開始呢,再等等吧! ");
}
}
} // 获取当前按钮状态
public static String getCurrentButtonAndForm(String url, String encoding) {
if (url == null || "".equals(url.trim()))
return null;
String buttonState = "";
StringBuffer content = new StringBuffer();
boolean formFlag = false;
try {
// 新建URL对象
URL u = new URL(url);
InputStream is = new BufferedInputStream(u.openStream());
InputStreamReader theHTML = new InputStreamReader(is, encoding != null ? encoding : "gb2312");
BufferedReader br = new BufferedReader(theHTML);
String s = "";
while ((s = br.readLine()) != null) {
if (s.indexOf("<input type=\"submit\" class=\"buyaction J_BuySubmit\" title=\"立即抢\" value=\"立即抢\"/>") != -1) {
buttonState = "立即抢";
} else if (s.indexOf("<a href=\"#\" class=\"extra notice J_BuyButtonSub\">开团提醒</a>") != -1) {
buttonState = "开团提醒";
} else if (s.indexOf("<div class=\"main-box chance \">") != -1) {
buttonState = "还有机会";
} else if (s.indexOf("<span class=\"out floatright\">卖光了...</span>") != -1) {
buttonState = "卖光了";
} else if (s.indexOf("<span class=\"out floatright\">已结束...</span>") != -1) {
buttonState = "已结束";
}
if (s.indexOf("<form class=\"J_BuySubForm\" data-ccb=\"0\" data-ques=\"0\" action") != -1) {
content.append(s + "\r\n");
formFlag = true;
}
if (formFlag == true) {
if (s.indexOf("<input name=\'_tb_token_\' type=\'hidden\' value") != -1) {
content.append(s + "\r\n");
}
if (s.indexOf("<input type=\"hidden\" name=\"_input_charset\" value") != -1) {
content.append(s + "\r\n");
}
if (s.indexOf("<input type=\"hidden\" name=\"itemId\" value") != -1) {
content.append(s + "\r\n");
}
if (s.indexOf("<input type=\"hidden\" name=\"id\" value") != -1) {
content.append(s + "\r\n");
}
if (s.indexOf("<input type=\"hidden\" name=\"tgType\" value") != -1) {
content.append(s + "\r\n");
}
if (s.indexOf("<input type=\"submit\" class=\"buyaction J_BuySubmit\"") != -1) {
content.append(s + "\r\n");
}
if (s.indexOf("</form>") != -1) {
content.append(s + "\r\n");
}
}
if (s.indexOf("<div class=\"time-banner\">") != -1) {
break;
}
}
br.close();
} catch (Exception e) {
System.err.println(e);
return "Open URL Error";
}
return buttonState + "," + content;
} // 提交表单
public static String doPost(String form) {
StringBuffer content = new StringBuffer();
try {
URLConnection connection = new URL(URL).openConnection();
connection.setDoOutput(true);
OutputStreamWriter os = new OutputStreamWriter(connection.getOutputStream(), "UTF-8");
os.write(form);
os.flush();
os.close();
InputStream is = connection.getInputStream();
InputStreamReader theHTML = new InputStreamReader(is);
BufferedReader br = new BufferedReader(theHTML);
String s = "";
while ((s = br.readLine()) != null) {
content.append(s + "\r\n");
}
} catch (Exception e) {
e.printStackTrace();
}
// 返回提交表单后返回的页面内容
return content.toString();
} // 登录
public static void doLogin(String username, String password) {
String form = "<form id=\"J_StaticForm\" action=\"https://login.taobao.com/member/login.jhtml\" method=\"post\" autocomplete=\"on\"><input type=\"text\" name=\"TPL_username\" id=\"TPL_username_1\" value=\"" + username + "\"><input type=\"password\" name=\"TPL_password\" id=\"TPL_password_1\" value=\"" + password + "\"><input type=\"hidden\" id=\"J_TPL_redirect_url\" name=\"TPL_redirect_url\" value=\"http://www.taobao.com/? spm=a2107.1.1000340.1.AL2Mpn\"><button type=\"submit\" id=\"J_SubmitStatic\">登 录</button></form>";
doPost(form);
} public static void main(String[] args) {
//doLogin();
// new MyThread().start();
// new MyThread().start();
// new MyThread().start();
// new MyThread().start();
// new MyThread().start();
// new MyThread().start();
// new MyThread().start();
new MyThread().start();
}
}

Java 实现 淘宝秒杀 聚划算 自己主动提醒 源代码的更多相关文章

  1. Python 实现 淘宝秒杀 聚划算 自己主动提醒 源代码

    说明 本实施例可以监视一起购买的成本button,当警报济济一堂花费时间整点到达(音频文件自定义位置)而自己主动跳出页面(URL习惯). 同一时候还能够通过命令行參数自己定义刷新间隔时间(默认0.1s ...

  2. 利用Selenium+java实现淘宝自动结算购物车商品(附源代码)

    转载请声明原文地址! 本次的主题是利用selenium+java实现结算购买购物车中的商品. 话不多说,本次首先要注意的是谷歌浏览器的版本,浏览器使用的驱动版本,selenium的jar包版本.   ...

  3. Python实现淘宝秒杀聚划算自动提醒源码

    快来加入群[python爬虫交流群](群号570070796),发现精彩内容. 本实例能够监控聚划算的抢购按钮,在聚划算整点聚的时间到达时发出提醒(音频文件自己定义位置)并自动弹开页面(URL自己定义 ...

  4. 淘宝数据库OceanBase SQL编译器部分 源代码阅读--Schema模式

    淘宝数据库OceanBase SQL编译器部分 源代码阅读--Schema模式 什么是Database,什么是Schema,什么是Table,什么是列,什么是行,什么是User?我们能够能够把Data ...

  5. 淘宝数据库OceanBase SQL编译器部分 源代码阅读--生成物理查询计划

    SQL编译解析三部曲分为:构建语法树,制定逻辑计划,生成物理运行计划. 前两个步骤请參见我的博客<<淘宝数据库OceanBase SQL编译器部分 源代码阅读--解析SQL语法树>& ...

  6. 淘宝数据库OceanBase SQL编译器部分 源代码阅读--生成逻辑计划

    淘宝数据库OceanBase SQL编译器部分 源代码阅读--生成逻辑计划 SQL编译解析三部曲分为:构建语法树.生成逻辑计划.指定物理运行计划. 第一步骤,在我的上一篇博客淘宝数据库OceanBas ...

  7. 淘宝数据库OceanBase SQL编译器部分 源代码阅读--解析SQL语法树

    OceanBase是阿里巴巴集团自主研发的可扩展的关系型数据库,实现了跨行跨表的事务,支持数千亿条记录.数百TB数据上的SQL操作. 在阿里巴巴集团下,OceanBase数据库支持了多个重要业务的数据 ...

  8. Python 实现毫秒级淘宝、京东、天猫等秒杀抢购脚本

    本篇文章主要介绍了Python 通过selenium实现毫秒级自动抢购的示例代码,通过扫码登录即可自动完成一系列操作,抢购时间精确至毫秒,可抢加购物车等待时间结算的,也可以抢聚划算的商品. 该思路可运 ...

  9. 淘宝客知道这几个ID,收入将会提高50%

    基础问题天天说,天天有人问.这篇文章写点基础的.特别对新手的帮助会很大哦. 1,PID,做淘宝客不知道PID,赚到钱也会被冻结. 如何手动获取PID 2,单品ID,淘宝商品的唯一识别编号,和身份证一样 ...

随机推荐

  1. 俯瞰spring

    [简化Java开发] 基于POJO的轻量级和最小入侵性编程: 通过依赖注入和面向接口实现松耦合: 基于切面和惯例进行声明式编程: 通过切面和模板减少样板代码: [容纳你的bean] 容器是spring ...

  2. php expat+DOM+SimpleXML XML读取

    XML 文件 将在我们的例子中使用下面的 XML 文件: <?xml version="1.0" encoding="ISO-8859-1"?> & ...

  3. if-else优化

    过多if-else分支的优化   超过3个就应该去优化,说if-else过多的分支可以使用switch或者责任链模式等等方式来优化.确实,这是一个小问题,不过我们还是可以整理一下这个小问题的重构方式. ...

  4. 【02】xmind如何修改默认线条设置

    [02]xmind如何修改不同主题的默认线条设置 魔芋:每次都是曲线.更喜欢为直线.因为曲线的路线是不确定的,看起来就显示很凌乱. 用everything搜索defaultStyles.xml     ...

  5. POJ-1743 Musical Theme,后缀数组+二分!

                                                        Musical Theme 人生第一道后缀数组的题,采用大众化思想姿势极其猥琐. 题意:给你n个 ...

  6. Python之Regular Expressions(正则表达式)

    在编写处理字符串的程序或网页时,经常会有查找符合某些复杂规则的字符串的需要.正则表达式就是用于描述这些规则的工具.换句话说,正则表达式就是记录文本规则的代码. 很可能你使用过Windows/Dos下用 ...

  7. 【译】NCCloud: Applying Network Coding for the Storage Repair in a Cloud-of-Clouds

    NCCloud:多云存储设备下存储修复的网络编码 Yuchong Hu, Henry C. H. Chen, Patrick P. C. Lee, Yang Tang  摘要:近年来的研究提出通过条带 ...

  8. Linux(9):期中架构(1)--- 集群构架 & 备份服务

    01. 了解集群架构服务器组成 基本架构组成:(用于让用户进行访问) # 前端服务部分: 1)顾客-用户 是一个访问者,请求访问网站页面 2)保安-防火墙设备 对访问架构用户进行策略控制,正常访问网站 ...

  9. Explosion at Cafebazaar

    Explosion at Cafebazaar 时间限制: 1 Sec  内存限制: 128 MB 题目描述 You are an engineer at Cafebazaar and your sp ...

  10. 蒲公英(bzoj 2724)

    Description Input 修正一下 l = (l_0 + x - 1) mod n + 1, r = (r_0 + x - 1) mod n + 1 Output Sample Input ...