当前位置: 代码迷 >> Eclipse >> myeclipse 8.6 配备 gwt
  详细解决方案

myeclipse 8.6 配备 gwt

热度:582   发布时间:2016-04-23 02:26:05.0
myeclipse 8.6 配置 gwt

由于myeclipse官网对大陆地区IP访问屏蔽,在myeclipse中配置gwt插件后不能更新。网上资料有eclipse + gwt 的多,myeclipse+gwt的很少,折腾了半天,环境搭建起来了。这里记载点文字,留给用myeclipse配置gwt的哥们儿。

1.即通过新建.link文件的方式。
首先解压缩gpe-e35-latest.zip,比如解压到D:\gpe-e35-latest.zip
然后在你的MyEclipse目录(比如C:\Program Files\Genuitec\MyEclipse 8.5\)
的dropins目录下新建一个txt文件,比如gpe.txt,在里面写上path=D:/gpe-e35-latest,
也就是定位到你解压缩后的gpe-e35-latest文件夹位置,这里要注意文件夹间间隔用"/"号而不是"\",
再修改gpe.txt为gpe.link,最后重启 myeclipse就可以了
2.下载? com.googlipse.gwt_0.5.4.jar,把该jar包拷贝到 Genuitec\Common\plugins目录下
?
3. 下载 appengine-java-sdk-1.3.8.zip gwt-2.1.0.zip 解压,并把 gwt-2.1.0.zip ,

4.创建C:\gwtapp\Plugins\GWT_APP\eclipse\plugins
? 把gpe-e35-latest.zip解压出来的gpe-e35-latest\eclipse\plugins下的jar包拷贝到
? C:\gwtapp\Plugins\GWT_APP\eclipse\plugins下
? gpe-e35-latest\eclipse\features下的文件也拷贝到
? C:\gwtapp\Plugins\GWT_APP\eclipse\plugins下
5.执行这段代码把控制台生成出来的信息拷贝到
? Genuitec\MyEclipse-8.6\configuration\org.eclipse.equinox.simpleconfigurator下的
?bundles.info文件后面
6.重启myeclipse就OK了
******************************************************************
package installPlugin;

import java.io.File;
import java.util.ArrayList;
import java.util.List;
//Myeclipse 7的插件安装方式与原先的方式完全不一样了,
//下面以vssplugin1.6.2插件安装为例进行说明。
//假设Myeclipse 7的安装路径为:E:\Genuitec
//vssplugin1.6.2插件的路径为:?
//E:\Plugins\vssplugin\eclipse\plugins
//将下面这段代码编译后执行:
//CreatePluginsConfig.java

//执行完之后,将控制台中打印出的执行结果,直接复制到下面这个文件中:
//E:\Genuitec\MyEclipse 7.0\configuration\org.eclipse.equinox.simpleconfigurator\bundles.info
//然后用 -clean 命令重新启动Myeclipse即了完成插件的安装。
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;
????}
????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 getFileList(String path) {
??path = getFormatPath(path);
//??System.out.print(path);
??path = path + "/";
//??System.out.print(path);
??File filePath = new File(path);
??if (!filePath.isDirectory()) {
???return null;
??}else{
??}
??
??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("E:\\Plugins\\vssplugin\\eclipse\\plugins")
??new CreatePluginsConfig("C:\\gwtapp\\Plugins\\GWT_APP\\eclipse\\plugins")
????.print();//C:\gwtapp\Plugins\GWT_APP\eclipse\plugins
?
?}
}

?

?

1 楼 zouxiaohu87 2011-04-13  
我最近也在安装google app engine插件呀,以前装过几次没有问题,但最近更新出现问题呀!请楼主指点。qq:512475710回答的问题:邹小虎!
2 楼 zouxiaohu87 2011-04-13  
我最近也在装google app engine插件。以前在线更新没有问题。现在出现问题。我也试了很多方法。自己下载了gpe的包,还是没有装上呀。qq:512475710,回答问题:邹小虎。请加我!
3 楼 eneve520 2011-05-13  
zouxiaohu87 写道
我最近也在装google app engine插件。以前在线更新没有问题。现在出现问题。我也试了很多方法。自己下载了gpe的包,还是没有装上呀。qq:512475710,回答问题:邹小虎。请加我!


已经给你发了QQ邮件。注意查收。
4 楼 eneve520 2011-05-17  
eneve520 写道
zouxiaohu87 写道
我最近也在装google app engine插件。以前在线更新没有问题。现在出现问题。我也试了很多方法。自己下载了gpe的包,还是没有装上呀。qq:512475710,回答问题:邹小虎。请加我!


已经给你发了QQ邮件。注意查收。

重新补充了下配置,这个是没问的了。
5 楼 QIAN_QIAN 2011-08-31  
我按你的配置了,怎么还是不行啊?请问

3. 下载 appengine-java-sdk-1.3.8.zip gwt-2.1.0.zip 解压,并把 gwt-2.1.0.zip ,

这是怎么弄的啊?
6 楼 hy_zhym 2011-11-16  
从第三步开始就少东西了,能补充完整吗?
  相关解决方案