Java中的 URL getPath() 方法及示例
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