这是一个创建于 3550 天前的主题,其中的信息可能已经有所发展或是发生改变。
String address="http://api.map.baidu.com/telematics/v3/weather?location=北京&output=json&ak=xxxxxxxx";
//key我申请的是服务端api,白名单ip是0.0.0.0/0
URL url=new URL(address);
connection=(HttpURLConnection) url.openConnection();
connection.setRequestMethod("GET");
connection.setRequestProperty("contentType","utf-8");
connection.setDoOutput(true);
InputStream in=connection.getInputStream();
BufferedReader reader=new BufferedReader(new InputStreamReader(in,"utf-8"));
StringBuilder response=new StringBuilder();
String line;
while((line=reader.readLine())!=null){
response.append(line);
}
response里面的是error:-3;result:No result available;
看不出哪里有问题啊。。
2 条回复 • 2015-02-26 09:46:14 +08:00
|
|
1
welsmann 2015-02-25 19:41:16 +08:00 1
这个接口经常任性的,返回的数据格式有时候会不一致。 很显然它又任性了一把。
|
|
|
2
liuxu 2015-02-26 09:46:14 +08:00
|