gpt4 book ai didi

java - 有没有简单的方法使用 JAVA 对 url 查询字符串进行语法验证

转载 作者:太空宇宙 更新时间:2023-11-04 11:40:51 27 4
gpt4 key购买 nike

有没有简单的方法可以使用 JAVA 对 url 查询字符串进行语法验证。我发现了类似的问题,但没有一个很好的答案。

最佳答案

您可以使用java.net.URL来创建URL。如果 URL 不正确,则会抛出 MalformedURLException

try{  
URL url=new URL("www.something.com?a=b&c=d");
}
catch(MalformedURLException e){
System.out.println("Sorry! This is Incorrect URL!!!");
}

请参阅documentation

URL

public URL(String spec) throws MalformedURLException

Creates a URL object from the String representation. This constructoris equivalent to a call to the two-argument constructor with a nullfirst argument.

Parameters:
spec - the String to parse as a URL.

Throws:
MalformedURLException - if no protocol is specified, or an unknownprotocol is found, or spec is null.

关于java - 有没有简单的方法使用 JAVA 对 url 查询字符串进行语法验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42800984/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com