MyEclipse v8.5

Source: Internet
Author: User

After MyEclipse 8.5 M1 and MyEclipse 8.5 M2, MyEclipse Enterprise Workbench 8.5 for Eclipse 3.5.2 was officially released yesterday! On the official website, you can download MyEclipse 8.5. This version integrates Eclipse 3.5.2, which improves team collaborative development, development cycle management, and better support for Spring and Hibernate.

Note: The official website has been walled, and all links can be downloaded using thunder or express.

MyEclipse Enterprise Workbench 8.5 for Windows 7/Vista/XP/NT/2000/98)

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)
Download Page: http://www.myeclipseide.com/Downloads-req-getit-lid-153.html

 

========================================================== ============================

MyEclipse 8.5 decompilation plug-in jad Installation Method

 

Preparations

1. Download jad.exe file: http://www.varaneckas.com/sites/default/files/jad/jad158g.win.zip
2. Download jadeclipse plug-in: http://prdownloads.sourceforge.net/jadclipse/net.sf.jadclipse_3.3.0.jar? Download
3. JadClipse Website: http://jadclipse.sourceforge.net/wiki/index.php/Main_Page

Install

1. Decompress jad.exe to the specified directory. For example, c: \ java \ jad
2. Copy the jadeclipse plug-in net. sf. jadclipse_3.0.jar to the myeclipse installation directory \ Genuitec \ Common \ plugins.
3. In the myeclipse installation directory, create the dropins/eclipse folder, create the features and plugins folders respectively in the eclipse folder, and copy net. sf. jadclipse_3.3.0.jar to the features and plugins folders respectively.
4. After restarting myeclipse, configure the jadeclipse plug-in.
5. In the eclipse Window, click Window> Preferences> Java> JadClipse> Path to Decompiler. (Set the absolute path of jad, such as C: \ java \ Jad \ jad.exe ). Use Eclipse code formatter (overrides Jad formatting instructions) option to check and format the code.
6. In the eclipse Window, click Window> Preferences> Java> JadClipse> Misc to tick the Convert Unicode strings into ANSI strings option to avoid Chinese garbled characters After decompilation.

 

========================================================== ====================

MyEclipse 8.5 Chinese Simplified tutorial

 

MyEclipse 8.5 Chinese Simplified tutorial favorites
First download the MyEclipse 8.5 Chinese Language Pack;

: Http://download.csdn.net/source/2192696

With the Chinese package, let's start to Chinese. We need to follow my steps.

1: overwrite the language folder in the downloaded Chinese package to the language folder in MyEclipse 8.5 you installed.

2: copy the code in CreatePluginsConfig. java in the compressed package as follows.

Note that the path of C: \ Program Files \ Genuitec \ Common \ language \ plugins above should be changed to the path for installing MyEclipse 8.5 Latest on your computer, replace the red path with your address. Note that you need to add "\" to each "\". For example, if my installation path is c: \ soft \, you must change it to c: \ soft \\.

3: Create a project, create a CreatePluginsConfig class in the project, copy the above Code, and remember to modify your plug-in path.

4: Run your CreatePluginsConfig class, and then output a large string of English in the console. At this time, you must copy all the English output from the console

C: \ Program Files \ Genuitec \ MyEclipse 8.5 \ configuration \ org. eclipse. equinox. simpleconfigurator, open bundles.info in notepad, and press enter in the last line. Paste the content in the console and save it. The MyEclipse 8.5 folder is your MyEclipse 8.5 runtime path.

If your MyEclipse running folder is not MyEclipse 8.5, you can see what your running path is and open the bundles.info file according to the above path. This is very important because there are two configuration folders, so if you are afraid of errors, please note the configuration in the MyEclipse running folder.

5: Find the MyEclipse. ini file in the directory of myeclipse 8.5. The file is located in Figure 1. Use NotePad to open the last line and add one more statement

-Duser. language = zh

6: Save and start MyEclipse. Here you can see the Chinese interface and wish you success.

7. configuration. java class

 

 

Code

Import java. io. File;
Import java. util. ArrayList;
Import java. util. List;

/**
* Install the plug-in code generator in 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 (); // path of the INS in the Chinese package
// Friendly reminder: The above C: \ myEclipse \ language \ plugins is the path for your myEclipse Installation

}
}

 

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.