运行以下程序,生成key:

import java.io.*;    

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, "0");    

                          System.out.println("Serial:" + res);    

                          reader.readLine();    

                      } catch (IOException ex) {    

                      }    

                  }    

              }

myeclipse trial expired暂时解决办法的更多相关文章

  1. myeclipse trial expired[转]

    转自:http://blog.csdn.net/yuyuyuyuy/article/details/5878122 今天MyEclipse提示过期了,MyEclipse Trial Expired. ...

  2. myeclipse 启动卡住的解决办法

    myeclipse 启动卡住的解决办法 今天启动myeclipse突然卡住,CPU一直占用,启动任务管理器强制关闭.重启myeclipse,重启电脑都不能够解决. 上网查找,在工程路径(工作空间的路径 ...

  3. MyEclipse总是quick update解决办法

    这个问题的解决办法是关闭自动更新 1. Windows > Preferences > MyEclipse> Community Essentials, 把选项 "Sear ...

  4. Ubuntu使用MyEclipse闪退的解决办法

    修改myeclipse.ini文件, -Xmx512m-XX:MaxPermSize=512m-XX:ReservedCodeCacheSize=256m-Dosgi.nls.warnings=ign ...

  5. myEclipse开发内存溢出解决办法myEclipse调整jvm内存大小java.lang.OutOfMemoryError: PermGen space及其解决方法

    摘要: tomcat部署多个项目后,启动tomcat正常,访问项目时却会出现该错误在网上查了查又试了好几次,才解决,将解决方法记录下来,以方便以后查看或让遇到同样问题的朋友有个参考 PermGen s ...

  6. []cp,转载]提示MyEclipse Trial Expired,如何手动获取MyEclipse 注册码!很牛!

    1.建立JAVA Project,随便命名,只要符合规则就行. 2.在刚刚建好的Project右击src,新建一个类,命名为MyEclipseGen,把.java里本来有的代码全部删掉,再把下面的代码 ...

  7. MyEclipse激活失败,解决办法

    文章参考:http://www.cnblogs.com/dingyuanxin/p/4046356.html 失败可能是:systemid和exe破解出来的那个对应不上: 1.启动MyEclipse, ...

  8. 今天提示MyEclipse Trial Expired,如何手动获取MyEclipse 注册码!很牛!

    1.建立JAVA Project,随便命名,只要符合规则就行. 2.在刚刚建好的Project右击src,新建一个类,命名为MyEclipseGen,把.java里本来有的代码全部删掉,再把下面的代码 ...

  9. MyEclipse不能自动编译解决办法总结

    yEclipse在debug模式下,有时会碰到修改的文件无法自动编译的问题,以下的方法可以逐一尝试一下. 1.确保:Project->build automatically 已经被选上. 2.p ...

随机推荐

  1. window.postMessage 在iframe父子页面数据传输

    介绍 https://developer.mozilla.org/zh-CN/docs/Web/API/Window/postMessage window.postMessage 发送方 接收方 示例 ...

  2. The Data Way Vol.3|做到最后只能删库跑路?DBA 能做的还有很多

    关于「The Data Way」 「The Data Way」是由 SphereEx 公司出品的一档播客节目.这里有开源.数据.技术的故事,同时我们关注开发者的工作日常,也讨论开发者的生活日常:我们聚 ...

  3. 开启Nginx代理HTTPS功能

    1.首先查看是否已经安装SSL openssl version -a 2.生成SSL证书 在nginx目录下创建ssl文件夹 cd /etc/pki mkdir nginx cd nginx 生成20 ...

  4. 洛谷2805 [NOI2009]植物大战僵尸 (拓扑排序+最小割)

    坚决抵制长题面的题目! 首先观察到这个题目中,我们会发现,我们对于原图中的保护关系(一个点右边的点对于这个点也算是保护) 相当于一种依赖. 那么不难看出这个题实际上是一个最大权闭合子图模型. 我们直接 ...

  5. CAD_DWG图Web可视化一站式解决方案-唯杰地图-vjmap

    背景 DWG图是AutoCAD是私有格式,只能在CAD软件上编辑查看,如何发布至Web上做数据展示,GIS分析应用开发,一直是业内头疼的事情. 传统的办法采用的解析AutoCAD图形绘制,并封装成Ac ...

  6. Just My Code debugging

    Just My Code debugging During a debugging session, the Modules window shows which code modules the d ...

  7. Golang通脉之基础入门

    为什么要学 Go 性能优越感:Go 极其地快,其性能与 Java 或 C++相似.在使用中,Go 一般比 Python 要快 30 倍: 序列化/去序列化.排序和聚合中表现优异: 开发者效率较高:多种 ...

  8. from athletelist import AthleteList出现红色下滑波浪线警告

    问题:from athletelist import AthleteList出现红色下滑波浪线警告 经过个人网上搜索了解,这个问题是因为python找不到相关的.py文件,无法导入athletelis ...

  9. Stream中的Pipeline理解

    使用Stream已经快3年了,但是从未真正深入研究过Stream的底层实现. 今天开始把最近学到的Stream原理记录一下. 本篇文章简单描述一下自己对pipeline的理解. 基于下面一段代码: p ...

  10. Convolutional Neural Network-week2编程题2(Residual Networks)

    1. Residual Networks(残差网络) 残差网络 就是为了解决深网络的难以训练的问题的. In this assignment, you will: Implement the basi ...