-
myeclipse配置svn插件
v1.8.5 免費版 -
- 軟件大小:11.3M
- 軟件語言:中文
- 軟件類型:國產(chǎn)軟件 / 軟件開發(fā)
- 軟件授權(quán):免費軟件
- 更新時間:2016-11-22 10:45
- 軟件等級:
- 應(yīng)用平臺:WinAll, WinXP
- 軟件官網(wǎng):暫無
相關(guān)軟件
myeclipsev6.5.0 官方正式版
439M/中文/5.0
myeclipse 2013 64位破解補丁免費版
857KB/中文/6.6
myeclipse 2014漢化版簡體中文版
1.20G/中文/10.0
myeclipse10/9.1注冊機綠色版
750KB/中文/10.0
myeclipse2016 ci7漢化破解版
1.52G/中文/10.0
軟件介紹人氣軟件精品推薦相關(guān)文章網(wǎng)友評論下載地址
-
eclipse配置svn客戶端是myeclipse導(dǎo)入文件工具,可以支持myeclipse10、myeclipse8.5等不同版本導(dǎo)入文件夾,myeclipse怎么使用svn?內(nèi)附詳細的安裝插入教程,有需要的用戶歡迎來IT貓撲下載~
myeclipse怎么配置svn
myeclipse安裝svn插件的多種方式
方法一:在線安裝
1.打開HELP->MyEclipse Configuration
Center。切換到SoftWare標簽頁。
2.點擊Add Site 打開對話框,在對話框Name輸入Svn,URL中輸入:https://subclipse.tigris.org/update_1.6.x
3.在左邊欄中找到Personal Site中找到SVN展開。將Core SVNKit Library和Optional JNA
Library添加(右鍵Add to Profile),Subclipse下面的Subclipse Integration for Mylyn
3.0可以不添加(特別注意,此處不要添加)。
4.在右下角窗格(Pending Changes )中點擊Apply。安裝重啟后MyEclipse即可。
方法二:link安裝
安裝subclipse, MyEclipse9.0 SVN插件
1、從官網(wǎng)下載site-1.6.10.zip文件,網(wǎng)址是:subclipse.tigris.org,
2、從中解壓出features與 plugins文件夾,復(fù)制到E:\MyEclipse\myPlugin\svn里面,其它的*.xml文件不要。
3、在 E:\MyEclipse\MyEclipse9.0\dropins下新建文件svn.link,內(nèi)容是:path=E:\\MyEclipse \\myPlugin\\svn保存。
4、(嘜呆兒:這一步不確定,先不要刪除)刪除E:\MyEclipse\MyEclipse8.5\configuration \org.eclipse.update文件夾
5、重啟myeclipse就一切正常了。[/size]
以上兩種方法都嘗試成功
方法三:直接解壓
下載SVN插件:site-1.6.10.zip
解壓后將其全部文件拷貝至:D:\Program Files\Genuitec\MyEclipse 8.5\dropins(MyEclipse的安裝目錄)
重啟MyEclipse即可出現(xiàn)SVN!
方法四:肯定可行的方法
1、下載最新的SVN包:
https://subclipse.tigris.org/servlets/projectDocumentList?folderID=2240
2、在你的磁盤上任意位置創(chuàng)建文件夾:“myplugins/svn”。名字可以任取,為了方便插件管理,建議名稱為“myplugins”。
3、將解壓的svn里的兩個文件夾拷貝到“myplugins/svn”下。
4、復(fù)制下列java代碼,修改路徑并執(zhí)行:
package app;
import java.io.File;
import java.util.ArrayList;
import java.util.List;
/**
* MyEclipse9 插件配置代碼生成器
*
*
*/
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)
{
/*你的插件的安裝目錄*/
String plugin = "改成安裝目錄//Genuitec//svn";
new PluginConfigCreator().print(plugin);
}
}
這里需要注意的是修改成為剛才svn所在路徑,建議改為絕對路徑。比如d:/myplugins/svn/。。。
5、 找到“$myeclipse_home/configuration /org.eclipse.equinox.simpleconfigurator/”,打開其中的“bundles.inf”文件,為了防止分不清是不 是我們自己后加的東西,在最后面多回幾次車,然后粘貼第4步運行后的代碼,保存
6、重啟myeclipse
-
更多>>軟件截圖
推薦軟件
UXPin軟件 49.8M
下載/中文/3v2017 免費版visual studio 2017 702KB
下載/中文/3官方中文旗艦版ADT Plugin for Eclipse(Android開發(fā)工具) 98M
下載/中文/2v23.06 官方最新版PEiD中文版 1M
下載/中文/4v0.95 全插件漢化版hadoop 64位安裝包 113.3M
下載/英文/1v2.3 免費版XTreme Toolkit Pro 17(vc界面開發(fā)工具) 62.6M
下載/中文/1v17.2.0 免費版android sdk完整包(包括SDK tools) 1.37G
下載/中文/1v23.0.4 離線安裝包myeclipse2017ci 1中文版 1.52G
下載/中文/11免費漢化版
其他版本下載
精品推薦myeclipse
- 更多 (33個) >>myeclipsemyeclipse是一款非常優(yōu)秀的軟件開發(fā)工具,通過此軟件,用戶們可以非常輕松的進行數(shù)據(jù)庫和JavaEE的開發(fā)、發(fā)布以及應(yīng)用程序服務(wù)器的整合,從而讓用戶們的工作效率大大提升,此外,該軟件還支持JavaServlet,AJAX,JSP,JSF,Str
myeclipse2017ci 1中文版1.52G
/中文/11myeclipse10/9.1注冊機750KB
/中文/1myeclipse2016漢化包4.0M
/中文/0myeclipse10中文補丁3.0M
/中文/2myeclipse2013中文補丁(附漢化教程)2.6M
/中文/0MyEclipse 2017 CI1-CI3漢化補丁12M
/中文/0MyEclipse 20131.27G
/中文/0myeclipse2014注冊碼生成器4.8M
/中文/0MyEclipse CI 2018.12.0破解版安裝包1.66G
/多國語言[中文]/3myeclipse2019激活補丁23.3M
/中文/2
相關(guān)文章
-
下載地址
-
myeclipse配置svn插件 v1.8.5 免費版
-
-
查看所有評論>>網(wǎng)友評論
-
更多>>猜你喜歡