- 浏览: 938626 次
- 性别:
- 来自: 重庆
文章分类
- 全部博客 (453)
- Windows phone 7 (0)
- Andriod (47)
- iPhone (1)
- Web (30)
- J2EE (34)
- stucts 2学习笔记 (34)
- 开发项目 (3)
- spring学习笔记 (24)
- EJB学习笔记 (6)
- Hibernate学习笔记 (15)
- JPA学习笔记 (8)
- Jsp (11)
- ajax (7)
- 异常收集模块 (1)
- jquery (2)
- phoneGap (2)
- jquery Mobile (0)
- java面试总结 (5)
- Object-C (0)
- javascript (6)
- Eclipse (5)
- 支付集成 (2)
- Weblogic (1)
- Dubbox (5)
- Redis (10)
- linux (21)
- Codis (2)
- React Native (0)
- Mysql (6)
- Docker (3)
- 自动化部署 (1)
- 项目Bug管理平台 (2)
- 负载均衡 (1)
- Mycat (2)
- Java基础知识 (16)
- 数据库 (7)
- Maven (17)
- Kafka (21)
- logs (2)
- 大并发 (2)
- 消息中间件 (2)
- 分布式锁 (3)
- 算法 (4)
- 数字证书原理,公钥私钥 (0)
- 数字证书原理 (1)
- 公钥私钥 (1)
- zookeeper (4)
- Hbase (9)
- Hadoop (2)
- storm (2)
- 通信协议 (1)
- Hive (3)
- git (1)
- JVM (2)
- 大数据相关算法 (1)
- idea (5)
- 将博客搬至CSDN (1)
- 设计模式 (2)
- 表达式 (1)
- 代码审查工具 (0)
- 开源项目 (1)
- PyCharm (0)
- python (6)
- Kubernetes (1)
- swagger (1)
- Maven中mirrors和repository的关系 (0)
- RabbitMQ (3)
- redisson (1)
- k8s (2)
- Mac (1)
最新评论
-
misisipi101:
假设库已经分为32个,那么要扩展到64个,怎样做呢
订单分库分表实践总结以及关键步骤 -
mfkxk298:
简单明了的例子,解决了问题,谢谢啦!
关于ListView中notifyDataSetChanged()刷新数据不更新原因 -
whbwang:
" target="_blank" ...
java web开发 高并发处理 -
suguoqian:
...
java web开发 高并发处理 -
xiangnanyujing:
Dubbox+Redis3.0+Spring+Hibernate+zookeeper实现消息推送核心搭建
MyEclipse7.0 下载地址:downloads.myeclipseide.com/downloads/products/eworkbench/7.0M1/MyEclipse_7.0M1_E3.4.0_Installer.exe
1、建立java Project,任意取个名字就行。
2、建立一个名字为MyEclipseGen的类文件,内容见附件。
3、运行该代码,在控制台中会出现:
please input register name:
×××××(你的name)
即生成序列号:
4、进入myeclipse,输入Subscriber和Subscription
code即可。
附件:
import java.io.BufferedReader;
import
java.io.IOException;
import
java.io.InputStreamReader;
public class MyEclipseGen {
private static final
String LL = "Decompiling this copyrighted software is a violation of both your
license agreement and the Digital Millenium Copyright Act of 1998
(http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 of the DMCA, penalties range up to
a $500,000 fine or up to five years imprisonment for a first offense. Think
about it; pay for a license, avoid prosecution, and feel better about
yourself.";
public String getSerial(String userId, String licenseNum)
{
java.util.Calendar cal = java.util.Calendar.getInstance();
cal.add(1, 3);
cal.add(6, -1);
java.text.NumberFormat nf = new
java.text.DecimalFormat("000");
licenseNum =
nf.format(Integer.valueOf(licenseNum));
String verTime = new
StringBuilder("-").append(
new
java.text.SimpleDateFormat("yyMMdd").format(cal.getTime()))
.append("0").toString();
String type = "YE3MP-";
String need = new
StringBuilder(userId.substring(0, 1)).append(type)
.append("300").append(licenseNum).append(verTime).toString();
String dx =
new StringBuilder(need).append(LL).append(userId)
.toString();
int
suf = this.decode(dx);
String code = new
StringBuilder(need).append(String.valueOf(suf))
.toString();
return this.change(code);
}
private int decode(String s) {
int i;
char[]
ac;
int j;
int k;
i = 0;
ac = s.toCharArray();
j =
0;
k = ac.length;
while (j < k) {
i = (31 * i) +
ac[j];
j++;
}
return
Math.abs(i);
}
private String change(String s) {
byte[]
abyte0;
char[] ac;
int i;
int k;
int j;
abyte0 =
s.getBytes();
ac = new char[s.length()];
i = 0;
k =
abyte0.length;
while (i < k) {
j = abyte0[i];
if ((j
>= 48) && (j <= 57)) {
j = (((j - 48) + 5) % 10) +
48;
} else if ((j >= 65) && (j <= 90)) {
j = (((j -
65) + 13) % 26) + 65;
} else if ((j >= 97) && (j <= 122))
{
j = (((j - 97) + 13) % 26) + 97;
}
ac[i] = (char)
j;
i++;
}
return
String.valueOf(ac);
}
public MyEclipseGen() {
super();
}
public static void main(String[] args) {
try
{
System.out.println("please input register name:");
BufferedReader reader = new BufferedReader(new InputStreamReader(
System.in));
String userId = null;
userId =
reader.readLine();
MyEclipseGen myeclipsegen = new MyEclipseGen();
String res = myeclipsegen.getSerial(userId, "5");
System.out.println("Serial:" + res);
reader.readLine();
} catch
(IOException ex) {
}
}
}
我运行后的结果:
please input register
name:
liyong
Serial:yLR8ZC-855550-60596956794009011
注:private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/copyright/legislation/dmca.pdf). Under section 1204 of the DMCA, penalties range up to a $500,000 fine or up to five years imprisonment for a first offense. Think about it; pay for a license, avoid prosecution, and feel better about yourself.";
此段代码常量不可变更
否则注册码无效
发表评论
-
CDN加速WordPress触发CORS导致跨域加载失败
2018-04-09 17:36 1570这两天折腾CDN加速来提升自己博客的访问速度,用的阿里云C ... -
PV模型
2017-02-05 18:05 720你想建设一个能承受500万PV/每天的网站吗? 500万PV ... -
App开发一些总结
2016-04-05 17:48 2599架构因人而异,不同的架构师大多会有不同的看法;架构也因项目 ... -
解决fastjson内存对象相互应用导入json字符串出现错误问题
2016-04-05 17:48 1538日常在使用FastJson的时候可能很少会 ... -
分布式配置统一管理平台-Windows
2016-02-02 14:10 2721这里主要使用到disconf分布式配置管理平台 支持wind ... -
Codis使用入门
2016-01-15 16:35 1729首先严重吐槽 在使用Coids遇到无数坑 坑 坑 ... ... -
高可用消息队列框架ZBUS
2016-01-13 10:47 5984我们在日常开发中可以需要用到消息队列 当然我们完全可以自己 ... -
实现消息推送核心搭建(升级版)
2016-01-08 15:43 1724前面已经实现了第一版 ... -
Dubbox+Redis3.0+Spring+Hibernate+zookeeper实现消息推送核心搭建
2015-12-30 15:55 10542这里在开始搭建环境之前请搭建先熟悉了解Dubbox、Red ... -
java 实现微信搜索附近人功能
2015-03-25 18:07 4931最近给andorid做后台查询数据功能,有一个需求是模仿微信 ... -
重庆APP开发 重庆Android 重庆Ios 爬虫科技 重庆爬虫科技
2014-10-06 12:03 9<!--[if gte mso 9]><x ... -
Javascript: unterminated string literal解决方法
2014-02-06 16:47 1974Javascript: unterminated strin ... -
身份证验证 80秒13亿数据校验
2014-01-15 13:41 9799/** * @Company asiainfo-linkag ... -
网页上播放视频的免费的播放器_CKPlayer
2013-12-12 14:17 2241今天在工作的过程中遇到一个功能:在网页中加入视频播放器 ... -
Ehcache 整合Spring 使用页面、对象缓存
2013-12-12 13:04 1292Ehcache 整合Spring 使用页面、对象缓存 E ... -
js 手机验证
2013-12-11 13:25 705** * 手机号:目前全国有27种手机号段。 * 移动有16 ... -
Freemarker使用
2013-12-04 16:57 1128以下内容全部是网上收 ... -
Hibernate数据缓存策略
2013-11-27 23:28 1133(一)hibernate数据缓存策略 缓存是数据 ... -
国内开源cms
2013-07-03 16:51 7http://www.jeecms.com/ -
FCkediter 整个struct2
2013-05-19 18:52 1402在这里总结一下今天使用Fckediter 和在整合Struct ...
相关推荐
MyEclipse破解文件+破解说明,MyEclipse破解文件+破解说明,MyEclipse破解文件+破解说明,MyEclipse破解文件+破解说明
myeclipse破解
myeclipse破解版+汉化包+mac+苹果电脑版本
支持Myeclipse10.7.1及以下版本破解; 通过在下不懈的努力以及寻找,终于找到Myeclipse破解方法,希望各位小哥哥 小姐姐多多支持,祝各位工作顺利 !
相信好多数小伙伴都遇到过,用MyEclipse破解补丁,破解时总会失败,此教程可确保百分百成功,另附上破解补丁链接:https://download.csdn.net/download/arvinsnow/10658864
MyEclipse 破解文件+破解说明.zip文件里有用于破解myeclipse编辑器工具,内含操作说明
myeclipse破解版含教程,内含破解方法即破解步骤, myeclipse2017亲测可用
各版本的MyEclipse破解码 保证破解效果 所有的版本都适合 下载了不后悔
MyEclipse 破解文件+破解说明
myeclipse破解详细图解,亲测通过,全程不到十分钟,有需要安装包及破解包的请@我:)
MyEclipse 破解工具MyEclipse 破解工具MyEclipse 破解工具MyEclipse 破解工具MyEclipse 破解工具
这是 myeclipse10 配套破解文件+破解说明,支持2010版本的myeclipse破解
myeclipse破解 eclipse破解 工具类
这是个Myeclipse破解软件,大家可以看着我的博客的破解教程一步步的进行,一定可以破解的。
MyEclipse破解工具包及破解时可能遇到的问题解答