eclipse默认情况下内存分的很小。既然电脑有1G内存自然要给它多分点 。体验下大户人家的感觉喔。可加如下参数,效果不错。
-vmargs -Xms256m -Xmx256m -XX:PermSize=128m -XX:MaxPermSize=128m 
myeclise 5.0 注册机 源码
[codes=java]
import java.io.*;
public class Crack
{
    public static String convert(String s)
    {
        if (s == null || s.length() == 0)
            return s;
        byte[] byteArray = s.getBytes();
        char[] charArray = new char[s.length()];
int byteArrayLength = byteArray.length;
        for (int i = 0; i < byteArrayLength; i++)
        {
            int j = byteArray[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;
            charArray[i] = (char) j;
        }
        return String.valueOf(charArray);
    }
    private static int hash(String s)
    {
        int i = 0;
        char charArray[] = s.toCharArray();
        int charArrayLength = charArray.length;
        for (int j = 0; j < charArrayLength; j++)
            i = 31 * i + charArray[j];
        return Math.abs(i);
    }
    private static String inputString()
    {
        BufferedReader bufferedreader = new BufferedReader(
                new InputStreamReader(System.in));
        String s = null;
        try
        {
            s = bufferedreader.readLine();
        } catch (IOException ioexception)
        {
            ioexception.printStackTrace();
        }
        return s;
    }
    public static void main(String args[])
    {
        try
        {
            System.out
                    .println("MyEclipse Enterprise Workbench 5.0 Keygen By Team DDU");
            System.out.print("License Name : ");
            String s = inputString();
            String licStr = "YE3MP-999-00-9912310";
            String h = s.substring(0, 1)
                    + licStr
                    + "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."
                    + s;
            int j = hash(h);
            String lic = s.substring(0, 1) + licStr + Integer.toString(j);
            System.out.println("License Key  : " + convert(lic));
        } catch (Exception exception)
        {
            exception.printStackTrace();
        }
    }
}
[/codes]
粘贴上来好像有问题。提供源码下载。
[file]attachment/crack.java.txt[/file] 
似乎不能用啊。
你可以点有我你原本的 Crack.java 吗?
以上你所给的 有问题。
你给的是:
License Name : dean
License Key : qLR8ZC-444-55-4467865904376929
可是 Crack.java 给的是:
License Name : dean
License Key : qLR8ZC-444-55-446786546869108
我想你可能可以查查你的 convert(String s) 和 String licstr 的 value
可以的话, 电邮我你的回应. 谢谢.
haizZz 看样子 没人管这个 topic 了。
能用
只是下面的String h 的一点点问题
改了就好了
String h = s.substring(0, 1)+ licStr + "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 (<a href="http://www.loc.gov/copyright/legislation/dmca.pdf)." target="_blank">http://www.loc.gov/copyrig…</a> 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." + s;