一 : 在Eclipse上如何安装Myeclipse的插件
[myeclipse 安装插件]在Eclipse上如何安装Myeclipse的插件——简介教大家如何安装插件
[myeclipse 安装插件]在Eclipse上如何安装Myeclipse的插件——详细知识[myeclipse 安装插件]在Eclipse上如何安装Myeclipse的插件 一安装MyEclipse 首先下载EnterpriseWorkbenchInstaller_4.1.1GA_E3.1.exe。
[myeclipse 安装插件]在Eclipse上如何安装Myeclipse的插件 二打开在MyEclipse中 选择help -> software updates 在面板中选择available software选项卡。
[myeclipse 安装插件]在Eclipse上如何安装Myeclipse的插件 三在右侧选择 Add Site 在弹出的窗口中选择Archive... 选择你下载的插件包 点ok, 再在available选显卡左侧找到你刚加入的插件包并选择,插件包会自动展开 选择你要安装的插件。
[myeclipse 安装插件]在Eclipse上如何安装Myeclipse的插件 四然后会看到右侧面板的install按钮 点击Install按钮就OK啦。
二 : Myeclipse 9.0 m1 序列号 安装插件方法
序列号:
myeclipse9.0
zLR8ZC-855444-69585456482385694
安装插件方法:(7.0 以上都适用)
myeclipse自从7.0后就不再提供link安装,而是采用在bundles.info文件写入配置信息的方式安装插件。具体步骤如下: 1) 首先bundles.inf文件在myeclipses安装目录下的...\MyEclipse7.5\configuration\org.eclipse.equinox.simpleconfigurator。最好先备份一下。 2) 然后你可以在myeclipse下建立一个文件夹myplugin来存放你需要安装的插件,将你需要安装的插件放到这个目录下。 3)然后新建一个java文件,创建如下内容 Java代码import java.io.File;
import java.util.ArrayList;
import java.util.List;/**
* MyEclipse 7.5 (2009-12-1) 插件配置代码生成器
*
*
*/
public class PluginConfigCreator {public PluginConfigCreator() {
}public void print(String path) {
List<String> 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) {
print(thePath);
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;
}
int last = fileName.lastIndexOf("_");// 最后一个下划线的位置
String filename1 = fileName.substring(0, last);
String filename2 = fileName.substring(last + 1,
fileName.length() - 4);
result = filename1 + "," + filename2 + ",file:/" + path + "\\"
+ fileName + ",4,false";
System.out.println(result);
}}
}public List<String> getFileList(String path) {
path = getFormatPath(path);
path = path + "/";
File filePath = new File(path);
if (!filePath.isDirectory()) {
return null;
}
String[] filelist = filePath.list();
List<String> filelistFilter = new ArrayList<String>();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) {
/* 你的插件的安装目录
* myeclipse下建立一个文件夹myplugin来存放你需要安装的插件
* */
String plugin = "D:\\Program Files\\Genuitec\\myplugin\\jad";
new PluginConfigCreator().print(plugin);
}}
注意需要修改main函数里的参数,定位到你刚才新建的文件夹下。运行该java文件,将输出结果全部拷贝到bundles.inf文件中。 4)最后重启myeclipse就可以了。
三 : m2eclipse插件安装
m2eclipse插件安装
一、给Eclipse安装maven的插件 m2eclipse
1 打开eclipse
2 Help -->Eclipse MarketPlace,在打开的界面搜索框中输入maven查找m2eclipse插件,出现如下图
3、直接点击Install,选择Maven Integration for Eclipse,选择后confirm,选择I accept the terms of the license agreements,然后点击Finish,接着就耐心等待Eclipse安装完成即可。[www.61k.com]
eclipse插件 m2eclipse插件安装
二、检查是否安装成功
(1)点击Help – about eclipse – installation details,看是否存在Maven Integration for Eclipse,如下图:
(2)再检查eclipse是否可以创建Maven项目了
File – New – Other,找到Maven一项,如果展开一切正常,说明m2eclipse已经正确安装了。[www.61k.com)
61阅读提醒您本文地址:
四 : MyEclipse装反编译插件
一、给MyEclipse安装反编译工具
1.下载jad.exe:
http://www.61k.comsites/default/files/jad/jad158g.win.zip
将jad.exe解压到指定目录,如 D:javajad
2.下载jadeclipse插件:
http://prdownloads.sourceforge.net/jadclipse/net.sf.jadclipse_3.3.0.jar?download
3. 在MyEclipse安装文件的根目录下依次建Myplugins->jadclipse->clipse->plugins;
然后把这个jadclipse_3.2.4.jar放到plugins文件夹下
再到eclipse安装文件的根目录下的links文件夹里面新建一个jadclipse.link文件,
输入 path=MyEclipse安装目录+/myplugins/jadclipse
4. 打开MyEclipse =>help => Software Updates => Find and Install... => Search for new features to install,
单击"New Remote Site...",在name栏输入JadClipse,在URL栏输入 http://www.61k.comeclipse/update ,
然后下一步,就可以看到“JadClipse”了,选上安装就可以了,
安装好了可以看到Window => Preferences... => Java => JadClipse选项卡。
5. 配置jadeclipse插件
在MyEclipse窗口下,点击Window > Preferences > Java > JadClipse > Path to Decompiler:
(设置jad的绝对路径,如 D:javaJadjad.exe)。Use Eclipse code formatter选项打勾,与格式化出来的代码样式一致。
在MyEclipse窗口下,点击Window > Preferences > Java > JadClipse > Misc,
将Convert Unicode strings into ANSI strings选项打勾,避免反编译后可能出现的中文乱码。
61阅读提醒您本文地址:
本文标题:
myeclipse安装插件-在Eclipse上如何安装Myeclipse的插件 本文地址:
http://www.61k.com/1152326.html