本文整理匯總了Java中org.tmatesoft.svn.core.SVNURL.create方法的典型用法代碼示例。如果您正苦於以下問題:Java SVNURL.create方法的具體用法?Java SVNURL.create怎麽用?Java SVNURL.create使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.tmatesoft.svn.core.SVNURL
的用法示例。
在下文中一共展示了SVNURL.create方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的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);
}
}