天天看點

myeclipse8.0下載下傳 漢化 破解方法 及 svn配置

今天到網上弄了一個MyEclipse8.0 的呵呵。包括可以漢化,破解等。是以特意寫下做個筆記

1.下載下傳位址:不用說,電驢,好資源,http://www.verycd.com/topics/2774257/#theCom

2.漢化:很多版本的漢化方法和下載下傳位址:http://www.jsphelp.com/html/24/0906/112.html 自己去看吧

裡面的漢化檔案的說明的非常清楚。本人就不多廢話了

3.破解方法:MyEclipseGen.java檔案

import java.io.BufferedReader;

import java.io.IOException;

import java.io.InputStreamReader;

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

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

reader.readLine();

} catch (IOException ex) {

}

}

}

運作它,輸入使用者名,自動出來注冊碼。自己注冊去吧呵呵。。。ok,到此全部結束

注冊:Window -> Preferences -> 左邊 打開 MyEclipse标簽 有個 Subscription ->enter Subscription

一直以來沒有更新MyEclipse8,自MyEclipse8 2009年9月24日釋出後,大體看了下提示說明:還支援struts2了 下載下傳來看看了

下載下傳位址 http://www.verycd.com/topics/2774019/

下面是配置svn

打開MyEclipse8.0

help->Software Updates->find and install(如果沒有這個就用help->Software Updates->Add/Remove Software即可)

選擇search for new features to install, Next

點選new remote site

輸入name:subclipse,url:http://subclipse.tigris.org/update_1.6.x,點OK

選中subclipse,點選finish

在彈出框中選擇subclipse,把Subclipse Integration for Mylyn 3.x去掉,

Next一路安裝完成!

一.共享項目(把本地的項目共享到subversion伺服器上)

打開MyEclipse8.0 ,假設要共享projTest是項目名稱

右鍵項目projTest->Team->Share Project->Svn,

單庫模式下url填寫svn://svnserveraddress/,多庫模式下url填寫svn://svnserveraddress/Repository1,其中Repository1是庫的名稱

next直到finish,proj1就被共享到svn伺服器上了,但是代碼并沒上傳,還需要commit一次

右鍵項目projTest,team->commit,項目内容就被上傳到svn伺服器了

二.簽出項目(把svn伺服器上的項目下載下傳的到本地)

打開MyEclipse8.0

window->open perspective->svn repository explorer(如果沒有在other裡選擇)

在左邊空白處右鍵->new->repository location

單庫模式下url填寫svn://svnserveraddress/,多庫模式下url填寫svn://svnserveraddress/Repository1(同步驟二)

右鍵projTest->check out

next直到finish,該項目就被簽出到本地,切換到java視圖就能看到該項目了

本文來自CSDN部落格,轉載請标明出處:http://blog.csdn.net/cuker919/archive/2010/02/26/5328461.aspx