HttpPost post = new HttpPost(requestURL);
boolean isRedirects = httpClient.getParams().getBooleanParameter("http.protocol.handle-redirects", false);
post.getParams().setBooleanParameter("http.protocol.handle-redirects", isRedirects);
ArrayList<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("indexStoreName", indexStoreName));
post.setEntity(new UrlEncodedFormEntity(params, Consts.UTF_8));
// 发送请求
HttpResponse httpResponse = httpClient.execute(post);
int statusCode = httpResponse.getStatusLine().getStatusCode();
inputStream = httpResponse.getEntity().getContent();