安装步骤:
1、下载aptana3.2 Eclipse Plugin插件.
下载地址:http://update1.aptana.org/studio/3.2/024747/index.html
2、 首先找到bundles.info文件。
bundles.info在myeclipses安装目录下的
configuration\org.eclipse.equinox.simpleconfigurator,最好先备份
org.eclipse.equinox.simpleconfigurator一下。
3、创建myplugin文件夹。
在安装目录下创建myplugin文件夹,把下载aptana3.2 Eclipse Plugin解压出来中的
features与plugins文件夹放进myplugin文件夹中
4、在创建一个Java文件
创建Java文件运行下面的代码:
import java.io.File;
import java.util.ArrayList;
import java.util.List;
/**
* MyEclipse9.0 M1 插件配置代码生成器
*/
public class getKeyCode{
public getKeyCode() {
}
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 filenameOne = filenames[0];
String filenameTwo = filenames[1];
result = filenameOne + "," + filenameTwo + ",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 filenameOne = fileName.substring(0, last);
String filenameTwo = fileName.substring(last + 1,
fileName.length() - 4);
result = filenameOne + "," + filenameTwo + ",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) {
/* 你的插件的安装目录 */
String plugin = "E:\\myeclipse\\myplugin";
new getKeyCode().print(plugin);
}
5、把控制台打印出来的信息复制到bundles.info文件。切记不能覆盖原先bundles.info文件中的代码。
6、温馨提示:
对与myeclipse9.0 M1 采用安装目录下创建dropgins或者links文件,在他们中创建
aptana.link文件中写 path = 插件的路径,这两种方式安装aptana插件是不成功的!本
人调试过,不过你们有人采用这种两种方式安装aptana插件成功,麻烦告知
分享到:
相关推荐
### MyEclipse 9.0M1安装SVN插件的详细步骤 #### 步骤一:下载SVN插件包 首先,你需要从指定的官方网站或镜像站点下载SVN插件包。在这个例子中,使用的插件版本为`site-1.6.18`,可以从`...
汉化包的安装与使用是MyEclipse 9.0 M2/M1汉化过程中必不可少的步骤。首先,用户需要下载对应版本的汉化包,这通常是一个ZIP或RAR格式的压缩文件。在下载完成后,解压这个压缩包,你会找到一个包含汉化文件的语言包...
myeclipse-9.0M1-win32.zip.017
昨天晚上安装MyEclipse9.0 M1的反编译插件,在晚上找了很多教程都不能解决,最后综合了几个教程,然后自己再更改了里面的一些方法,总算成功安装了这个插件,故上传于此,希望能给有同样问题的朋友提供帮助。安装...
7. **安装插件到MyEclipse**:打开“Help”菜单,选择“Install New Software”,在“Work with”下拉框中选择“Add”。在弹出的对话框中,输入插件的本地路径(即解压后的`.zip`文件位置),点击“OK”。接下来,...
myeclipse9.0安装svn插件方法及所有文件myeclipse9.0安装svn插件方法及所有文件myeclipse9.0安装svn插件方法及所有文件myeclipse9.0安装svn插件方法及所有文件myeclipse9.0安装svn插件方法及所有文件
myeclipse-9.0M1-win32.zip.001
myeclipse-9.0M1-win32.zip.006
制作的MyEclipse9.0插件版,有8个压缩文件,对应的eclipse是3.6.2,需要你自己下载
除了直接安装插件,Eclipse插件还可以安装在内部或外部。外部安装的优势在于便于管理和更新,其目录结构通常包含features和plugins目录,有时还会有一个.eclipseextension文件。安装外部插件有两种方法:一是通过...
2. 安装插件: - 打开MyEclipse 9.0,进入“Help”菜单,选择“Install New Software”。 - 点击“Add”,在弹出的窗口中输入插件的名称(例如:Subversive SVN Connectors),然后点击“Archive...”选择之前下载...
myeclipse9.0的安装破解过程,其中带有详细的图解过程,直观易懂。
为此,MyEclipse9.0汉化包应运而生,旨在提供一个更加友好的中文操作环境,帮助开发者更高效地进行项目开发。 汉化包的安装与使用: 1. 下载与解压:首先,你需要从可靠渠道下载MyEclipse9.0的汉化包,通常是一个....
### MyEclipse 10.7 安装 Aptana 插件详解 #### 一、前言 在软件开发过程中,高效便捷的开发工具对于提高工作效率有着不可忽视的作用。MyEclipse作为一款广受欢迎的Java集成开发环境(IDE),不仅支持Java开发,还...
myeclipse-9.0M1-win32.part01.rar
MyEclipse 9.0安装教程及破解,自己在网上找得很辛苦!测试了能用
标题 "myeclipse6.5安装Aptana插件" 描述了如何在MyEclipse 6.5这个集成开发环境中添加Aptana插件的过程。Aptana是一款强大的开源Web开发工具,它专为创建JavaScript、HTML和CSS项目而设计,同时也支持PHP和Python等...
MyEclipse通过一系列插件提供了一个功能全面的开发环境,包括代码编辑、调试、版本控制、项目管理等众多功能。 ### MyEclipse 9.0版本特点 MyEclipse 9.0作为该系列的一个重要版本,引入了多项改进和新特性,使其...
myeclipse-9.0M1-win32.zip.011
- 打开MyEclipse 9.0安装目录下的“myeclipse.ini”文件,在文件末尾添加以下行: ``` -Duser.language=zh ``` - 保存并关闭文件。 ##### 步骤6:启动MyEclipse 完成上述所有步骤后,重新启动MyEclipse 9.0...