我正在使用一个 API,它要求我进行“URL HTMLCLient 调用”,它返回 JSON 格式的数据。我已经在我的浏览器上测试了这些链接,它们工作正常,但是当我尝试在 Android 中检索数据时,我不断得到一个空值。
这是我下面的代码
public String callWebservice(String weblink) {
String result = "";
try {
//String link = "http://free.worldweatheronline.com/feed/weather.ashx?q=cardiff&num_of_days=4&format=json&key=eb9390089uhq175307132201";
URL url = new URL(weblink);
URLConnection urlc = url.openConnection();
BufferedReader bfr = new BufferedReader(new InputStreamReader(
urlc.getInputStream()));
result = bfr.readLine();
} catch (Exception e) {
e.printStackTrace();
result = "timeout";
}
return result;
}
该网络链接包含我正在尝试检索信息的 url,我已经使用 worldweatheronline JSON API 测试了代码并且它工作正常。我的问题是,API 文档所说的进行 URL HTMLClient 调用的事实是否要求我以与常规 HTTP 请求不同的方式执行此操作,如果不是,那么当我返回空值时可能是什么原因相同的链接在我的浏览器上运行良好。