public static String[] Webcall(String emailID) {
try {
URL url = new URL(AppConfig.URL + emailID);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Accept", "application/json");
conn.setRequestProperty("Authorization", "application/json");
conn.setRequestProperty("userEmailId", emailID);
if (conn.getResponseCode() != 200) {
throw new RuntimeException("Failed : HTTP error code : " + conn.getResponseCode());
}
BufferedReader br = new BufferedReader(new InputStreamReader((conn.getInputStream())));
String output;
System.out.println("Output from Server .... \n");
while ((output = br.readLine()) != null) {
System.out.println(output);
}
conn.disconnect();
org.json.JSONObject _jsonObject = new org.json.JSONObject(output);
org.json.JSONArray _jArray = _jsonObject.getJSONArray("manager");
String[] str = new String[_jArray.length()];
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
これは私のコードです。私はWebサービスを呼び出してデータを取得しようとしています。ポストメソッドを使用してJavaでWebサービスを呼び出す方法
しかし、私は、Webサービスを打ったとき、私は例外
の下に取得していますが失敗しました:HTTPエラーコード:404
をどこが、このためのソリューションを提供するために、間違った試みをやっている私を提案してください。
申し訳ありませんが、404が何を意味するのかわかりません。 –
なぜこのエラーが発生するのですか。 –
google 404 http –