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

说明

本实例可以监控聚划算的抢购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 [email protected]
 * @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();
	}
}
时间: 2024-11-05 21:47:38

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

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

说明 本实施例可以监视一起购买的成本button,当警报济济一堂花费时间整点到达(音频文件自定义位置)而自己主动跳出页面(URL习惯). 同一时候还能够通过命令行參数自己定义刷新间隔时间(默认0.1s)和监控持续时间(默认1800s). 源代码 # encoding: utf-8 ''' @author: Techzero @email: [email protected] @time: 2014-5-18 下午5:06:29 ''' import cStringIO import getopt

Java 实现 淘宝秒杀 聚划算 自动提醒 源码

说明 本实例能够监控聚划算的抢购按钮,在聚划算整点聚的时间到达时自动弹开页面(URL自己定义). 可以自定义监控持续分钟数,同时还可以通过多线程加快刷新速度. 源码 package com.itechzero.pricemonitor; import java.io.BufferedInputStream; import java.io.BufferedReader; import java.io.InputStream; import java.io.InputStreamReader; im

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

说明 本实例能够监控聚划算的抢购按钮,在聚划算整点聚的时间到达时发出提醒(音频文件自己定义位置)并自动弹开页面(URL自己定义). 同时还可以通过命令行参数自定义刷新间隔时间(默认0.1s)和监控持续时间(默认1800s). 源码 # encoding: utf-8 ''' @author: Techzero @email: [email protected] @time: 2014-5-18 下午5:06:29 ''' import cStringIO import getopt import

java调用淘宝api

代码下载地址:http://www.zuidaima.com/share/1550463234034688.htm 原文:java调用淘宝api java代码结构: java调用淘宝api,布布扣,bubuko.com

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

淘宝数据库OceanBase SQL编译器部分 源代码阅读--Schema模式 什么是Database,什么是Schema,什么是Table,什么是列,什么是行,什么是User?我们能够能够把Database看作是一个大仓库,仓库分了非常多非常多的房间,Schema就是当中的房间,一个Schema代表一个房间,Table能够看作是每一个Schema中的柜子,行和列就是柜子中的格子.User就是房间的主人.简单来说,Schema是包含表,列,索引,视图等数据库对象的集合. OceanBase中的强

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

SQL编译解析三部曲分为:构建语法树,制定逻辑计划,生成物理运行计划. 前两个步骤请參见我的博客<<淘宝数据库OceanBase SQL编译器部分 源代码阅读--解析SQL语法树>>和<<淘宝数据库OceanBase SQL编译器部分 源代码阅读--生成逻辑计划>>.这篇博客主要研究第三步,生成物理查询计划. 一. 什么是物理查询计划 与之前的阅读方法一致,这篇博客的两个主要问题是what 和how.那么什么是物理查询计划?物理查询计划可以直接运行并返回数据

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

淘宝数据库OceanBase SQL编译器部分 源代码阅读--生成逻辑计划 SQL编译解析三部曲分为:构建语法树.生成逻辑计划.指定物理运行计划. 第一步骤,在我的上一篇博客淘宝数据库OceanBase SQL编译器部分 源代码阅读--解析SQL语法树里做了介绍,这篇博客主要研究第二步.生成逻辑计划. 一. 什么是逻辑计划? 我们已经知道,语法树就是一个树状的结构组织,每一个节点代表一种类型的语法含义.如 update student set sex="M" where name =&

淘宝秒杀笔记

我菜鸟别喷,我学通讯专业的,现在汽车厂做体力活.以下文章有空写. 1,倒计时直接下单地址. 2,js自动刷新下单代码(2秒下单,比手动快). 3,易语言倒计时淘宝秒杀器编程- 多线程(包括聚划算,非答题)(0秒下单) 4,易语言付款编程(1秒付款). 其他相关: 1,找秒杀信息(很关键) 2,sign算法,秒杀类接触的有两种,非登录. 3,毫秒时间校准. 4,promotions,bundleList优惠提前获取(有限制) 答题类比较难,数据库麻烦,还要白号,网上的秒杀器已经很成熟了,就不编了.

互联网科普-淘宝的聚划算(团购C2B)

?? 一.团购市场概述1.团购市场占有率公开数据显示,2011年,聚划算交易额突破百亿,活跃用户达千万,占比当年团购市场份额就超过50%.仅过一年.2012年,聚划算交易额达208亿元,是2011年的2倍多,日客户访问峰值突破1600万.2013年,阿里巴巴招股书数据显示,聚划算GMV达到477亿元人民币.2.现在的聚划算还算是团购吗?虽然聚划算被定位为"中国最受欢迎的团购网站",不过,仅仅用团购平台去定义聚划算并不完整.他作为阿里运营淘宝的利剑,利用他的动态数据建立了各种模型,不仅能