一、下載spket-1.6.18.jar,解壓,將features和plugins放置到D:\Program Files\myeclipse10\MyEclipse 10\myPlugin\extjsjava
二、在eclipse中編輯一下代碼,並運行main方法,//注意路徑對應插件路徑
import java.io.File;
import java.util.ArrayList;
import java.util.List;
/**
* MyEclipse9 、10 插件配置代碼生成器
*
*
*/
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)
{
/*你的SVN的features 和 plugins複製後放的目錄*/
String plugin = "D:/Program Files/myeclipse10/MyEclipse 10/myPlugin/extjs//注意路徑對應插件路徑
new PluginConfigCreator().print(plugin);
}
}web
三、將執行後的代碼放置到
D:\Program Files\myeclipse10\MyEclipse 10\configuration\org.eclipse.equinox.simpleconfigurator的bundles.info文件中
四、從新啓動myeclipseeclipse
而後進行相關配置:編輯器
Window → Preferences → Spket → JavaScript. Profiles → New ;
輸入「ExtJS」點擊OK;
選擇「ExtJS」 並點擊「Add Library」而後在下拉條中選取「ExtJS」;
選擇 「ExtJS」並點擊「Add File」,而後在你的./ext-3.x/目錄中選取「ext.jsb2」 文件;
選擇你想加載的ext組件;
點擊「Defalut」按鈕,設置spket編輯器爲js文件默認的編輯器。
以後重啓myeclipse,打開js文件,這樣編寫ext代碼時,就能夠彈出提示了哦!ui