자바 의 정규 표현 식 에서 검증 결 과 를 추출 합 니 다.

	/**
	 *     :    ,        
	 * @param path       
	 * @return String
	 */
	public String processPath(String path){
		//         
		Pattern pattern=Pattern.compile("out/[^/]+/");
		Matcher c=pattern.matcher(path);
		boolean bool=c.find();
		String strPath=bool?c.group(0):"";
		
		return strPath;
	}

좋은 웹페이지 즐겨찾기