我尝试了许多不同的方法来获得 http 响应,但总是收到消息为空。我曾尝试使用 chrome 附带的 Advance Rest Client 工具。在那我得到了成功的回应。我不知道我在哪里做错了。
try {
String urlParameters = "id=userid&password=password&device=android";
URL url = new URL("my url");
HttpURLConnection urlConnection = (HttpURLConnection) url
.openConnection();
urlConnection.setRequestMethod("POST");
urlConnection.setRequestProperty("Content-Type",
"application/x-www-form-urlencoded");
urlConnection.setRequestProperty("Content-Length",
"" + Integer.toString(urlParameters.getBytes().length));
urlConnection.setRequestProperty("Content-Language", "en-US");
urlConnection.setUseCaches(false);
urlConnection.setDoInput(true);
urlConnection.setDoOutput(true);
OutputStream outputStream = urlConnection.getOutputStream();
outputStream.write(urlParameters.getBytes());
outputStream.close();
int responseCode = urlConnection.getResponseCode();
if (responseCode == HttpURLConnection.HTTP_OK) {
InputStream in = urlConnection.getInputStream();
resultstring = convertinputStreamToString(in);
Log.d("Result String-------->", resultstring);
}
} catch (Exception e) {
e.printStackTrace();
}
我附上了我得到结果的截图:成功但在上面的代码中我得到结果:失败
我也尝试过使用 HttpClient 和 HttpPost 的代码。但这也不起作用
try {
HttpClient client = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(
"my url");
httpPost.setHeader("Accept", "application/json");
httpPost.setHeader("Content-type", "application/x-www-form-urlencoded");
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(3);
nameValuePairs.add(new BasicNameValuePair("id", "userid"));
nameValuePairs.add(new BasicNameValuePair("password", "password"));
nameValuePairs.add(new BasicNameValuePair("device", "android"));
// httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
UrlEncodedFormEntity se = new UrlEncodedFormEntity(nameValuePairs);
se.setContentType("application/x-www-form-urlencoded");
httpPost.setEntity(se);
httpPost.getParams().setBooleanParameter(
"http.protocol.expect-continue", false);
HttpResponse response = client.execute(httpPost);
String responseAsText = EntityUtils.toString(response.getEntity());
Log.d("Result String-------->", responseAsText);
} catch (Exception e) {
e.printStackTrace();
}
请帮帮我。我几乎尝试了一切。