运行以下程序,生成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. PHP审计之PHP反序列化漏洞

    PHP审计之PHP反序列化漏洞 前言 一直不懂,PHP反序列化感觉上比Java的反序列化难上不少.但归根结底还是serialize和unserialize中的一些问题. 在此不做多的介绍. 魔术方法 ...

  2. a标签刷新当前页面

    <a href="javascript:location.reload();">刷新页面</a>

  3. iOS自定义拍照框拍照&裁剪(一)

    卡片机时代 很重要的一点是,相机本身是没有方向概念的,它不理解拍摄的内容,只会以相机自己的坐标系去保存数据,下图展示了相机对"F"进行四个角度拍摄时返回的图片数据. 最初的卡片机时 ...

  4. [AGC023D] Go Home 题解

    题目传送门 Solution 首先排除掉特殊情况:若 \(S\) 在两侧,肯定会顺序/逆序直接走完,答案就是边界减去出发点. 考虑到若 \(P_1\geq P_n\),那么显然 \(1\) 不到家 \ ...

  5. NX9.0和NX10.0做自定义操作可以用的函数

    NX9.0:LIBUFUNX.DLL int UF_OPER_ask_check_geom(void *,int *,unsigned int * *) int UF_OPER_ask_first_o ...

  6. Selenium获取动态图片验证码

    Selenium获取动态图片验证码 关于图片验证码的文章,我想大家都有一定的了解了. 在我们做UI自动化的时候,经常会遇到图片验证码的问题. 当开发不给咱们提供万能验证码,或者测试第三方网站比如知乎的 ...

  7. 【UE4 C++】编程子系统 Subsystem

    概述 定义 Subsystems 是一套可以定义.自动实例化和释放的类的框架.可以将其理解为 GamePlay 级别的 Component 不支持网络赋值 4.22开始引入,4.24完善.(可以移植源 ...

  8. 【c++ Prime 学习笔记】第18章 用于大型程序的工具

    大规模应用程序的特殊要求包括: 在独立开发的子系统之间协同处理错误:异常处理 使用各种库(可能包含独立开发的库)进行协同开发:命名空间 对比较复杂的应用概念建模:多重继承 18.1 异常处理 异常处理 ...

  9. 热身 for computer industry

    项目 内容 作业属于 班级博客 作业要求 作业要求 个人课程目标 掌握软件工程基础知识 具体有助方面 个人认知与规划 其他参考文献 博客Ⅰ 博客 Ⅱ 选择计算机 你为什么选择计算机专业?你认为你的条件 ...

  10. Spring Security 多过滤链的使用

    Spring Security 多过滤链的使用 一.背景 二.需求 1.给客户端使用的api 2.给网站使用的api 三.实现方案 方案一: 方案二 四.实现 1.app 端 Spring Secur ...