博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
myeclipse5.5.1 GA开发工具注册码
阅读量:2353 次
发布时间:2019-05-10

本文共 3687 字,大约阅读时间需要 12 分钟。

文章来源:http://zhidao.baidu.com/link?url=fZuS8dCEOD4O7ZIjHqZN4OPVRXWO1iuldGEfgA6WZdGkXppjsfwZCN_uA4ICDu7iSDrp0z6HG9NNodfRwmZLSq

【问题】:

本人现在用5.5的环境,需要注册码一个,要确保有用,因为以前输过一次注册码,现在无法使用了,项目都加载不到tomcat中,一直提示注册码问题
是5.5.1 GA的版本 你给的注册码全国人民都在用,偶都试了20多个号了,没用

【解决办法】:

在myeclipse中建一个MyEclipseGen.java  然后吧下面内容考进去,运行这个java程序,在控制台要你输入一个字符串,你随便,回车后就会自动生成一个注册码的,如 input your name : yds      ---------    : xxxxxxxxxxxxxxxxxxxxxxxxxx那就是     Subscriber: yds           SubNULLion Code: xxxxxxxxxxxxxxxxxxxxxxxxxxx     然后你就用这个注册就行了。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 (). 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.";//定义一个String字符串       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, "20");               System.out.println("Serial:" + res); //输出序列号信息              reader.readLine();           } catch (IOException ex) {                    }       }   }

转载地址:http://nngvb.baihongyu.com/

你可能感兴趣的文章
腾讯云
查看>>
什么服务器比较好?
查看>>
阿里云+腾讯云采购季优惠攻略
查看>>
PCB设计容易出错的地方都有哪些?
查看>>
挠性电路板和刚性电路板的区别,以及柔性电路板焊接方法操作步骤
查看>>
如何做好一块PCB板,大神从以下几个方面做了论述
查看>>
学习笔记1之static
查看>>
学习笔记2之继承
查看>>
循环链表实现增、删、改、查等功能
查看>>
Android实现超链接和跑马灯
查看>>
实现二叉树先序、中序、后序遍历
查看>>
Socket客户端服务器连接
查看>>
简单字符设备驱动程序的操作步骤
查看>>
视频压缩:I帧、P帧、B帧
查看>>
视频编解码基础一
查看>>
视频编码学习二
查看>>
视频处理
查看>>
Python的安装教程
查看>>
谈谈码率、帧率、分辨率和清晰度
查看>>
OSI参考模型通信举例
查看>>