我的网址有错误。它捕获 MalformedUrlExcemptio 错误。url 在 api 中是映射形式。
String endpoint = "http://10.0.0.1/myapp/index.php/api_receiver/register"
URL url;
try {
url = new URL(endpoint);
} catch (MalformedURLException e) {
throw new IllegalArgumentException("invalid url: " + endpoint);
}
但如果我会使用这个网址。http://10.0.0.1/myapp2/index.php/api_receiver/register.php
- 这是一个有效的 url,但我的 api 端有一个错误,因为它与正确的映射不匹配。
谢谢