㈠ myeclipse过期了怎么破解
打开myeclipse,点开"Myeclipse"菜单项,有个"Subsription Infomation...",点击弹出一个窗口,输入正确的用户名和注册码就可以了.
Subscriber:Administrator
Subscription Code:NLR8ZC-855550-61587057662744625
㈡ myeclipse 过期了怎么办
根据 myeclipse 版本 去找相应的 密钥
网上很多
㈢ myeclipse过期了怎么办,求给出详细解决方法
用这个代码可以自动生成注册码,用生成的注册码就可以直接注册了。
importjava.io.*;publicclassMyEclipseGen{
privatestaticfinalStringLL="(http://www.loc.gov/right/legislation/dmca.pdf).Undersection1204oftheDMCA,penaltiesrangeuptoa$500,.Thinkaboutit;payforalicense,avoidprosecution,andfeelbetteraboutyourself.";publicStringgetSerial(StringuserId,StringlicenseNum){
java.util.Calendarcal=java.util.Calendar.getInstance();
cal.add(1,3);
cal.add(6,-1);
java.text.NumberFormatnf=newjava.text.DecimalFormat("000");
licenseNum=nf.format(Integer.valueOf(licenseNum));
StringverTime=newStringBuilder("-").append(
newjava.text.SimpleDateFormat("yyMMdd").format(cal.getTime()))
.append("0").toString();
Stringtype="YE3MP-";
Stringneed=newStringBuilder(userId.substring(0,1)).append(type)
.append("300").append(licenseNum).append(verTime).toString();
Stringdx=newStringBuilder(need).append(LL).append(userId)
.toString();
intsuf=this.decode(dx);
Stringcode=newStringBuilder(need).append(String.valueOf(suf))
.toString();
returnthis.change(code);
}privateintdecode(Strings){
inti;
char[]ac;
intj;
intk;
i=0;
ac=s.toCharArray();
j=0;
k=ac.length;
while(j<k){
i=(31*i)+ac[j];
j++;
}
returnMath.abs(i);
}privateStringchange(Strings){
byte[]abyte0;
char[]ac;
inti;
intk;
intj;
abyte0=s.getBytes();
ac=newchar[s.length()];
i=0;
k=abyte0.length;
while(i<k){
j=abyte0[i];
if((j>=48)&&(j<=57)){
j=(((j-48)+5)%10)+48;
}elseif((j>=65)&&(j<=90)){
j=(((j-65)+13)%26)+65;
}elseif((j>=97)&&(j<=122)){
j=(((j-97)+13)%26)+97;
}
ac[i]=(char)j;
i++;
}
returnString.valueOf(ac);
}publicMyEclipseGen(){
super();
}publicstaticvoidmain(String[]args){
try{
System.out.println("pleaseinputregistername:");
BufferedReaderreader=newBufferedReader(newInputStreamReader(
System.in));
StringuserId=null;
userId=reader.readLine();
MyEclipseGenmyeclipsegen=newMyEclipseGen();
Stringres=myeclipsegen.getSerial(userId,"0");
System.out.println("Serial:"+res);
reader.readLine();
}catch(IOExceptionex){
}
}
}
㈣ MyEclipse过期怎么办
1.点击window,找到你之前输入注册码的地方
2.可以点击如图红色的部分重新填写注册码:
3.重新输入新的注册码就可以了
㈤ myeclipse 10到期5天了 如何破解继续使用
进入android开发者的网址,http://developer.android.com/index.html,点击右边的那个下载sdk,解压后将sdk中的platform-tools和tools两个文件夹的路径添加到环境变量中的path中,前后用分号隔开,一切就Ok了,打开eclipse中的那个蓝色的图标,就可以用了。现在的eclipse比以前的方便多了,不用配置一大堆东西。当然,前提是你已经装了jdk。
㈥ 怎么查看Myeclipse的使用期限
Myeclipse-subscription information。 进入update subscription界面。
㈦ MyEclipse 10过期了怎么办
点 Activate 按钮,然后输入注册人和激活码。
试试这2个:
xiatian
kLR8ZC-855575-60536556376740576
Eclipse
RLR8ZC-855550-62596056386963124
㈧ MyEclipse 8.0 过期怎么办
1
新建一个工程 这里我取名为asc
2
在工程下新建一个class类 这里叫MyEclipseGen
3
MyEclipseGen文件里面的代码
import java.text.DecimalFormat;
import java.text.NumberFormat;
import java.text.SimpleDateFormat;
import java.util.Calendar;
public class MyEclipseGen {
public static final void main(String[] args) {
String id = "liuchao"; // 可更给为您的名字
String num = "999";// 许可证数量
System.out.println(getSerial(id, "100", num, false));
}
public static String getSerial(String userId, String version, String licenseNum, boolean selected) {
Calendar cal = Calendar.getInstance();
cal.add(1, 3);
cal.add(6, -1);
NumberFormat nf = new DecimalFormat("000");
licenseNum = nf.format(Integer.valueOf(licenseNum));
String verTime = selected ? (new StringBuffer("-")).append((new SimpleDateFormat("yyMMdd")).format(cal.getTime())).append("0").toString() :
"-1712250";//表示20171205,可改为自己需要的日期
String type = "YE3MB-";
String need = (new StringBuffer(String.valueOf(userId.substring(0, 1)))).append(type).append(version).append(licenseNum).append(verTime).toString();
String dx = (new StringBuffer(String.valueOf(need))).append("Decompiling this righted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (http://www.loc.gov/right/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.").append(userId).toString();
int suf = decode(dx);
String code = (new StringBuffer(String.valueOf(need))).append(String.valueOf(suf)).toString();
return change(code);
}
private static int decode(String s) {
int i = 0;
char ac[] = s.toCharArray();
int j = 0;
for (int k = ac.length; j < k; j++)
i = 31 * i + ac[j];
return Math.abs(i);
}
private static String change(String s) {
byte abyte0[] = s.getBytes();
char ac[] = new char[s.length()];
int i = 0;
for (int k = abyte0.length; i < k; i++) {
int 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;
}
return String.valueOf(ac);
}
}
4
然后运行这个代码 里面的用户名我命名为liuchao ,日期也在第二个注释的位置可以自行修改哦 。运行结果就为注册码了。
5
点击windows下的Preferences ->MyEclipse->Subscription
6
在右侧点击Enter Subscription 输入用户名 和注册码即可
㈨ myeclipse10超过日期不能用了该怎么办
破解工具破解