Я хочу получить json информацию по ссылке:
* +1004 * -example.org /? А = 1 & Ь = 2 & с = 3
но Log.v сообщает мне, что после request.setEntity (new UrlEncodedFormEntity (qparams));
мой URI : http://android.forum -example.org /?
Где моя ошибка?
Код:
try {
HttpClient httpClient = new DefaultHttpClient();
HttpPost request = new HttpPost("http://android.forum-example.org/?");
List<NameValuePair> qparams = new ArrayList<NameValuePair>(3);
qparams.add(new BasicNameValuePair("a", "1"));
qparams.add(new BasicNameValuePair("b", "2"));
qparams.add(new BasicNameValuePair("c", "3"));
request.setEntity(new UrlEncodedFormEntity(qparams));
Log.v("URI:", request.getURI().toString());
HttpResponse response = httpClient.execute(request);
} catch (IOException e) { e.printStackTrace(); }