отправка php-массива с помощью POST-андроида
Я хочу отправить php-массив через POST с android на php-сервер, и у меня есть этот код HttpClient httpclient = new DefaultHttpClient(); HttpPost httppost = new HttpPost(url); StringEntity dades = new StringEntity(data); httppost.setEntity(dades); // Execute HTTP Post Request HttpResponse response = httpclient.execute(httppost); HttpEntity resEntity = response.getEntity(); return resEntity.getContent(); Я думаю, что php-массив может быть в StringEntity […]