1. 程式人生 > >獲取 Eclipse 的安裝路徑

獲取 Eclipse 的安裝路徑

/**
	 * 獲取eclipse的安裝路徑,形如 E:/eclipse
	 * 
	 * @return
	 */
	public static String getEclipsePath() {
		String ss = Platform.getInstallLocation().getURL().toString();
		int index = ss.indexOf("/");
		return ss.substring(index + 1, ss.length() - 1);
	}