我想知道在 Java 中是否有任何标准 API 来验证给定的 URL? I want to check both if the URL string is right i.e. the given protocol is valid and then to check if a connection can be established.
我尝试使用 HttpURLConnection,提供 URL 并连接到它。我的需求的第一部分似乎已经完成,但是当我尝试执行 HttpURLConnection.connect ()时,‘ java.net。ConnectException: 引发“连接拒绝”异常。
这是因为代理设置的原因吗? 我试过为代理设置系统属性,但没有成功。
让我知道我做错了什么。