私は、投稿者を使ってURL(投稿)をテストします。 API:http://www.dmapp.com.tw/MobileApp/GetHealthData.phpjsonデータを取得できないのはなぜですか?
しかし、私は私のアンドロイド上でそれをしようとすると、私も私の応答コードメッセージを取得することはできませんが、200
マイlogcatは、私が使用し、私はそれを得ることはありません{"Msg":"Request method not accepted","JsonData":null,"ErrorCode":"0099"}
を示しています前もってjsonデータを取得するコード。
私はそれを逃した何かを教えてくれる人もいます。ここで
は私のGET JSONデータ機能である:
private String getRoute(String url) throws IOException {
HttpURLConnection connection = (HttpURLConnection) new URL(url).openConnection();
int responseCode = connection.getResponseCode();
StringBuilder jsonIn = new StringBuilder();
// responseCode show 200
Log.d("responseCode:",responseCode+"");
if (responseCode == 200) {
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(connection.getInputStream()));
String line;
while ((line = bufferedReader.readLine()) != null) {
jsonIn.append(line);
}
} else {
Log.d(TAG, responseCode + "responseCode");
}
connection.disconnect();
// I can't get the json data it shows Request method not accepted
Log.d(TAG, jsonIn + "jsonIn");
return jsonIn.toString();
}
あなたがリンクしているリンクはこのまた、メッセージ。 – andras
ありがとう、私は今答えを得る。 –