當前位置: 首頁>>代碼示例>>Java>>正文


Java SVNURL.parseURIDecoded方法代碼示例

本文整理匯總了Java中org.tmatesoft.svn.core.SVNURL.parseURIDecoded方法的典型用法代碼示例。如果您正苦於以下問題:Java SVNURL.parseURIDecoded方法的具體用法?Java SVNURL.parseURIDecoded怎麽用?Java SVNURL.parseURIDecoded使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.tmatesoft.svn.core.SVNURL的用法示例。


在下文中一共展示了SVNURL.parseURIDecoded方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: createUrl

import org.tmatesoft.svn.core.SVNURL; //導入方法依賴的package包/類
@NotNull
public static SVNURL createUrl(@NotNull String url, boolean encoded) throws SvnBindException {
  try {
    SVNURL result = encoded ? SVNURL.parseURIEncoded(url) : SVNURL.parseURIDecoded(url);

    // explicitly check if port corresponds to default port and recreate url specifying default port indicator
    if (result.hasPort() && hasDefaultPort(result)) {
      result = SVNURL
        .create(result.getProtocol(), result.getUserInfo(), result.getHost(), DEFAULT_PORT_INDICATOR, result.getURIEncodedPath(), true);
    }

    return result;
  }
  catch (SVNException e) {
    throw new SvnBindException(e);
  }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:18,代碼來源:SvnUtil.java

示例2: getUrl1

import org.tmatesoft.svn.core.SVNURL; //導入方法依賴的package包/類
public SVNURL getUrl1() {
  try {
    return SVNURL.parseURIDecoded(myUrl1);
  }
  catch (SVNException e) {
    return null;
  }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:9,代碼來源:MergeRootInfo.java

示例3: getUrl2

import org.tmatesoft.svn.core.SVNURL; //導入方法依賴的package包/類
public SVNURL getUrl2() {
  try {
    return SVNURL.parseURIDecoded(myUrl2);
  }
  catch (SVNException e) {
    return null;
  }
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:9,代碼來源:MergeRootInfo.java

示例4: urlValid

import org.tmatesoft.svn.core.SVNURL; //導入方法依賴的package包/類
private boolean urlValid(final String inputString) {
  if (inputString == null) {
    return false;
  }
  try {
    final SVNURL svnurl = SVNURL.parseURIDecoded(inputString.trim());
    return svnurl != null;
  } catch (SVNException e) {
    //
  }
  return false;
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:13,代碼來源:AddRepositoryLocationDialog.java

示例5: testUrlAppend

import org.tmatesoft.svn.core.SVNURL; //導入方法依賴的package包/類
public void testUrlAppend() throws Exception {
  final SVNURL base = SVNURL.parseURIDecoded(URL1);
  final String subPath = "/one more space/and more";
  final SVNURL url1 = SvnUtil.appendMultiParts(base, subPath);
  Assert.assertEquals(SVNURL.parseURIDecoded(URL1 + subPath), url1);

  final SVNURL base1 = SVNURL.parseURIDecoded(URL2);
  final String subPath1 = "/one\\more\\space/and/more";
  final SVNURL url2 = SvnUtil.appendMultiParts(base1, subPath1);
  Assert.assertEquals(SVNURL.parseURIDecoded(URL2 + subPath1.replace('\\', '/')), url2);

  final String result = SVNPathUtil.append("http://one", "test/multi/parts");
}
 
開發者ID:jskierbi,項目名稱:intellij-ce-playground,代碼行數:14,代碼來源:SvnUtilTest.java


注:本文中的org.tmatesoft.svn.core.SVNURL.parseURIDecoded方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。