我有服务器,它接受int或一个int的列表。当我发送int时,它运行良好,但是当我尝试发送List<Integer>
或int[]
时,响应总是错误(code 400
)。我如何发送int列表?这是我的代码:
url = new URL(adress);
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setDoOutput(true);
urlConnection.setRequestMethod("POST");
urlConnection.setUseCaches(false);
urlConnection.setConnectTimeout(10000);
urlConnection.setReadTimeout(10000);
urlConnection.setRequestProperty("Content-Type","application/json");
"android.schoolportal.gr");
urlConnection.connect();
JSONObject jsonParam = new JSONObject();
jsonParam.put("categories_okpd_2", list);
OutputStreamWriter out = new OutputStreamWriter(urlConnection.getOutputStream());
out.write(jsonParam.toString());
out.close();
我尝试了list
,如:
int myInt = 1;
List<Integer> list = new ArrayList<Integer>();
list.add(myInt);
和
int[] list = new int[5];
但它始终会导致code:400
出错。
答案 0 :(得分:1)
HTTP状态400表示错误请求:您向服务器发送了一些内容,它无法解析(您发送包含在对象中的列表,服务器等待纯列表)。
开始时,尝试在客户端使用list记录json。 要以json格式发送列表,最好将其包装在类中:
{
"list": [0, 4, 5]
}
答案 1 :(得分:1)
你需要将列表解析为json然后发送它。 This是关于如何将列表解析为json格式的类似答案。