myeclipse svn 플러그 인 설치

1. 최신 SVN 패키지 다운로드:http://subclipse.tigris.org/servlets/ProjectDocumentList?folderID=2240 2. 디스크 의 임의의 위치 에 폴 더 를 만 듭 니 다: "my plugins / svn".이름 은 마음대로 지 을 수 있 습 니 다. 플러그 인 관 리 를 편리 하 게 하기 위해 서 는 'my plugins' 라 는 이름 을 권장 합 니 다.3. 압축 을 푼 svn 의 두 폴 더 를 'my plugins / svn' 아래 에 복사 합 니 다.4. 다음 자바 코드 를 복사 하여 경 로 를 수정 하고 실행 합 니 다.
 
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: / my plugins / svn /...5. "$my eclipse home / configuration / org. eclipse. equinox. simpleconfigurator /" 를 찾 아 "bundles. inf" 파일 을 엽 니 다. 우리 가 추가 한 것 인지 아 닌 지 구분 하지 못 하도록 맨 뒤에 차 를 몇 번 더 돌 린 다음 4 단계 실행 후의 코드 를 붙 여 넣 고 6 을 저장 하고 my eclipse 를 다시 시작 합 니 다.

좋은 웹페이지 즐겨찾기