getPath()函數是URL類的一部分。函數getPath()返回指定URL的路徑名稱。
函數簽名:
public String getPath()
用法:
url.getPath()
參數:此函數不需要任何參數
返回類型:函數返回字符串類型
以下示例程序旨在說明getPath()函數的用法:
例子1:給定一個URL,我們將使用getPath()函數獲取路徑。
// Java program to show the
// use of the function getPath()
import java.net.*;
class Solution {
public static void main(String args[])
{
// url object
URL url = null;
try {
// create a URL
url = new URL(
"https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples/");
// get the Path
String _Path = url.getPath();
// display the URL
System.out.println("URL = " + url);
// display the Path
System.out.println(" Path= " + _Path);
}
// if any error occurs
catch (Exception e) {
// display the error
System.out.println(e);
}
}
}
輸出:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples/ Path= /url-getprotocol-method-in-java-with-examples/
例子2:現在看看getPath()與getFile()有何不同。 getPath()將排除查詢,但getFile()將包括查詢
// Java program to show the
// use of the function getPath()
import java.net.*;
class Solution {
public static void main(String args[])
{
// url object
URL url = null;
try {
// create a URL
url = new URL(
"https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol");
// get the Path
String _Path = url.getPath();
// display the URL
System.out.println("URL = " + url);
// display the Path
System.out.println(" Path= " + _Path);
}
// if any error occurs
catch (Exception e) {
// display the error
System.out.println(e);
}
}
}
輸出:
URL = https:// www.geeksforgeeks.org/url-getprotocol-method-in-java-with-examples?title=protocol Path= /url-getprotocol-method-in-java-with-examples
相關用法
- Java URI getPath()用法及代碼示例
- Java File getPath()用法及代碼示例
- Java Java lang.Long.lowestOneBit()用法及代碼示例
- Java Java.util.Collections.rotate()用法及代碼示例
- Java Java.util.Collections.disjoint()用法及代碼示例
- Java Java lang.Long.numberOfTrailingZeros()用法及代碼示例
- Java Java lang.Long.highestOneBit()用法及代碼示例
- Java Java lang.Long.builtcount()用法及代碼示例
- Java Java lang.Long.numberOfLeadingZeros()用法及代碼示例
- Java Java lang.Long.byteValue()用法及代碼示例
- Java Java lang.Long.reverse()用法及代碼示例
- Java Clock tickMinutes()用法及代碼示例
- Java Clock withZone()用法及代碼示例
注:本文由純淨天空篩選整理自andrew1234大神的英文原創作品 URL getPath() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。