本文整理匯總了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);
}
}
示例2: getUrl1
import org.tmatesoft.svn.core.SVNURL; //導入方法依賴的package包/類
public SVNURL getUrl1() {
try {
return SVNURL.parseURIDecoded(myUrl1);
}
catch (SVNException e) {
return null;
}
}
示例3: getUrl2
import org.tmatesoft.svn.core.SVNURL; //導入方法依賴的package包/類
public SVNURL getUrl2() {
try {
return SVNURL.parseURIDecoded(myUrl2);
}
catch (SVNException e) {
return null;
}
}
示例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;
}
示例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");
}