0
Я пытаюсь отправить JSON, который выглядит какНе удалось получить ответ от POST в формате JSON HttpURLConnection в Android
{
"latLong":"50.1109,8.6821 - latLong",
"currencyCode":"EUR",
"locale":"en-GB",
"budget":""
}
Когда я сделать это с помощью Почтальон, я получаю ответ, что мне нужно. Но в студии Android он не компилируется, и я получаю пустую строку. Моя функция выглядит так.
protected Void doInBackground(Void... params) {
URL url = null;
StringBuffer sb = new StringBuffer();
try {
url = new URL("http://192.168.2.101:12345/services/test");
} catch (MalformedURLException e) {
e.printStackTrace();
}
HttpURLConnection con = null;
try {
con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("POST");
con.setDoOutput(true);
con.setRequestProperty("Content-Type","application/json");
DataOutputStream printout = new DataOutputStream(con.getOutputStream());
String Json_String = "{\n" +
" \"latLong\":\"50.1109,8.6821 - latLong\",\n" +
" \"currencyCode\":\"EUR\",\n" +
" \"locale\":\"en-GB\",\n" +
" \"budget\":\"\"\n" +
"}";
InputStream in = new BufferedInputStream(con.getInputStream());
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String inputLine = "";
while ((inputLine = br.readLine()) != null) {
sb.append(inputLine);
}
result = sb.toString();
printout.flush();
printout.close();
} catch (IOException e) {
e.printStackTrace();
}
try {
responseMsg = con.getResponseMessage();
} catch (IOException e) {
e.printStackTrace();
}
try {
response = con.getResponseCode();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}