是否有任何默认类来检查参数,如果存在需要将其从java中的url中删除?

发布于 2025-01-08 21:43:57 字数 129 浏览 0 评论 0原文

是否有任何默认类来检查参数,如果存在需要将其从 url 中删除 例如:url=www.google.com?&id=1需要检查这个id,如果存在需要删除它,java中有什么方法可用?

Is there any default class to check parameter, if exists need to remove it from url
eg.: url=www.google.com?&id=1 need to check this id, if exists need to remove it , any methods available in java?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

时光病人 2025-01-15 21:43:57

我假设您需要删除查询参数

尝试以下代码:

import java.net.*;

public static removeQueryParameters(String url)
{
try 
    {
        URL url = new URL("http://www.google.com/test.do/?id=1");

        URL urlNew = new URL(url.getProtocol(), url.getHost(), url.getPath());
    }
    catch(MalformedURLException e)
    {
         e.printStackTrace();
    }
}

请注意您的网址格式错误...它缺少协议“http://google.com/?&id=1”

I am assuming you need to remove the query parameters

Try the following code:

import java.net.*;

public static removeQueryParameters(String url)
{
try 
    {
        URL url = new URL("http://www.google.com/test.do/?id=1");

        URL urlNew = new URL(url.getProtocol(), url.getHost(), url.getPath());
    }
    catch(MalformedURLException e)
    {
         e.printStackTrace();
    }
}

Please note that your URL is malformed ... it is missing protocol "http://google.com/?&id=1"

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文