经过了MyEclipse 8.5 M1和MyEclipse 8.5 M2两个版本,MyEclipse Enterprise Workbench 8.5 for Eclipse 3.5.2终于在昨天正式发布了!在官方网站上 MyEclipse 8.5 可以下载了,该版本集成了 Eclipse 3.5.2,提升了团队协作开发、开发周期管理以及 Spring 和 Hibernate 的更好支持。
注意:官网已经被墙,所有链接可以使用迅雷或者快车进行下载。
MyEclipse Enterprise Workbench 8.5 for Windows 7/Vista/XP/NT/2000/98 (3/26/2010)
File size: 825.84 MB
MD5 : a9038148dcde9066abc3711bf8ee636c
Added on: 26-Mar-2010
All-in-One installer for Windows is bundled with Eclipse and JRE, and requires no other downloads to get up and running.
下载地址:http://downloads.myeclipseide.com/downloads/products/eworkbench/galileo/myeclipse-8.5.0-win32.exe
MyEclipse Enterprise Workbench 8.5 for Latest Linux (03/26/2010)
All-in-One installer for Linux supports CentOS/RedHat, Ubuntu and Fedora, is bundled with Eclipse and JRE.
File size: 853.26 MB
MD5 :
32Bit:db44e273c9443d4d1bbff90456392312d
下载地址:http://downloads.myeclipseide.com/downloads/products/eworkbench/galileo/myeclipse-8.5M2-linux-gtk-x86.tgz
64 BIt: efa1240403dd8e09aff67ccf0b968d4f
下载地址:http://downloads.myeclipseide.com/downloads/products/eworkbench/galileo/myeclipse-8.5.0-linux-gtk-x86_64.tgz
MyEclipse Enterprise Workbench Version 8.5 for Mac OS/X (03/26/2010)
All-in-One installer for Mac OS/X is bundled with Eclipse and JRE
File size: 756.84 MB
MD5 : def45dd8c1b6acc99717704c314a5f17
http://downloads.myeclipseide.com/downloads/products/eworkbench/galileo/myeclipse-8.5.0-macosx.tgz
MyEclipse Enterprise Workbench 8.5 Custom Install (11/23/2009)
下载页面:http://www.myeclipseide.com/Downloads-req-getit-lid-153.html
==========================================================
MyEclipse 8.5反编译插件jad安装方法
准备工作
1. 下载jad.exe文件:http://www.varaneckas.com/sites/default/files/jad/jad158g.win.zip
2. 下载jadeclipse插件:http://prdownloads.sourceforge.net/jadclipse/net.sf.jadclipse_3.3.0.jar?download
3. JadClipse 官网:http://jadclipse.sourceforge.net/wiki/index.php/Main_Page
安装
1. 将jad.exe解压到指定目录。如:c:\java\jad
2. 将jadeclipse插件net.sf.jadclipse_3.3.0.jar 拷贝到myeclipse安装目录\Genuitec\Common\plugins\目录下。
3. 在myeclipse安装目录下dropins/创建eclipse文件夹,然后在eclipse文件夹中分别创建features、plugins文件夹,将net.sf.jadclipse_3.3.0.jar 分别拷贝到features和plugins文件夹中。
4. 重新启动myeclipse后,配置jadeclipse插件
5. 在eclipse窗口下,点击Window > Preferences > Java > JadClipse > Path to Decompiler。(设置jad的绝对路径,如 C:\java\Jad\jad.exe)。Use Eclipse code formatter(overrides Jad formatting instructions)选项打勾,与格式化出来的代码样式一致。
6. 在eclipse窗口下,点击Window > Preferences > Java > JadClipse > Misc,将Convert Unicode strings into ANSI strings选项打勾,避免反编译后可能出现的中文乱码。
=======================================================
MyEclipse 8.5中文汉化教程
MyEclipse 8.5中文汉化教程 收藏
首先下载 MyEclipse 8.5中文语言包;
下载地址:http://download.csdn.net/source/2192696
有了汉化包我们开始汉化吧,需要照我的步骤来。
1:把下载好的汉化包里的language的文件夹全覆盖到你安装的MyEclipse 8.5 里面language的文件夹。
2:把压缩包里面的CreatePluginsConfig.java里面的代码复制如下面一样。
注意上面C:\\Program Files\\Genuitec\\Common\\language\\plugins的路径要改成你电脑安装MyEclipse 8.5 Latest的路径,把红色的路径地址替换成你的,注意在每个"\"多加一个"\",比如我的安装路径是c:\soft\就要改成c:\\soft\\。
3:创建一个项目,在项目里面建立一个CreatePluginsConfig类,把上面的代码复制进去,记得修改你的插件路径。
4:运行你的CreatePluginsConfig类,然后在控制台下面会输出一大串英文。这时要全部把控制台输出的英文都复制到
C:\Program Files\Genuitec\MyEclipse 8.5\configuration\org.eclipse.equinox.simpleconfigurator ,用记事本把bundles.info 打开,在最后一行回车一下。把刚才在控制台里面的内容都粘贴进去保存。MyEclipse 8.5的文件夹是你MyEclipse 8.5运行路径。
如果你的MyEclipse运行的文件夹不是MyEclipse 8.5的话就看一下你的运行路径是什么按照上面的路径打开bundles.info 文件就行了。这个很重要因为有2个configuration文件夹件,怕大家进错了,所以要注意是MyEclipse运行文件夹里的configuration。
5:找到MyEclipse 8.5的目录下找到myeclipse.ini文件,文件就图1的里面的位置。用记事本打开在最后一行加多一条语句
-Duser.language=zh
6:保存,启动你的MyEclipse吧,这里你就可以看到中文的界面了,祝你成功。
7.configuration.java类
import java.util.ArrayList;
import java.util.List;
/**
* MyEclipse 8.x安装插件代码生成器
* @author Administrator
*
*/
public class CreatePluginsConfig {
private String path;
public CreatePluginsConfig(String path) {
this.path = path;
}
public void print() {
List list = getFileList(path);
if (list == null) {
return;
}
int length = list.size();
for (int i = 0; i < length; i++) {
String result = "";
String thePath = getFormatPath(getString(list.get(i)));
File file = new File(thePath);
if (file.isDirectory()) {
String fileName = file.getName();
if (fileName.indexOf("_") < 0) {
continue;
}
String[] filenames = fileName.split("_");
String filename1 = filenames[0];
String filename2 = filenames[1];
result = filename1 + "," + filename2 + ",file:/" + path + "\\"
+ fileName + "\\,4,false";
System.out.println(result);
} else if (file.isFile()) {
String fileName = file.getName();
if (fileName.indexOf("_") < 0) {
continue;
}
String[] filenames = fileName.split("_");
String filename1 = filenames[0]+"_"+filenames[1];
String filename2 = filenames[2].substring(0, filenames[2].lastIndexOf("."));
result = filename1 + "," + filename2 + ",file:/" + path + "\\"
+ fileName + ",4,false";
System.out.println(result);
}
}
}
public List getFileList(String path) {
path = getFormatPath(path);
path = path + "/";
File filePath = new File(path);
if (!filePath.isDirectory()) {
return null;
}
String[] filelist = filePath.list();
List filelistFilter = new ArrayList();
for (int i = 0; i < filelist.length; i++) {
String tempfilename = getFormatPath(path + filelist[i]);
filelistFilter.add(tempfilename);
}
return filelistFilter;
}
public String getString(Object object) {
if (object == null) {
return "";
}
return String.valueOf(object);
}
public String getFormatPath(String path) {
path = path.replaceAll("\\\\", "/");
path = path.replaceAll("//", "/");
return path;
}
public static void main(String[] args) {
new CreatePluginsConfig("C:\\myEclipse\\language\\plugins").print(); //汉化包插件路径
//友情提示:上面C:\\myEclipse\\language\\plugins是你的myEclipse安装的路径
}
}