我试图用山角地图APIC来打上方向。 我很想创造ur,得到JSON的回复,然后审查旅行时间的回复。 在我创立了JSON目标之后,我难以浏览。 对我来说,这表明,我要么听了回答,要么把JSON的物体拿走。 我很想知道,你能否坐在我从网上的辅导员那里走到一起的手法和法典中。
该守则意在得到答复。 它环绕了审判/副渔获物,没有引起任何错误。
String stringUrl = <URL GOES HERE>;
URL url = new URL(stringUrl);
HttpURLConnection httpconn = (HttpURLConnection)url.openConnection();
if (httpconn.getResponseCode() == HttpURLConnection.HTTP_OK)
{
BufferedReader input = new BufferedReader(new InputStreamReader(httpconn.getInputStream()),8192);
String strLine = null;
while ((strLine = input.readLine()) != null)
{
response.append(strLine);
}
input.close();
}
String jsonOutput = response.toString();