是否有任何默认类来检查参数,如果存在需要将其从java中的url中删除?
是否有任何默认类来检查参数,如果存在需要将其从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您需要删除查询参数
尝试以下代码:
请注意您的网址格式错误...它缺少协议“http://google.com/?&id=1”
I am assuming you need to remove the query parameters
Try the following code:
Please note that your URL is malformed ... it is missing protocol "http://google.com/?&id=1"