㈠ 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超過日期不能用了該怎麼辦
破解工具破解