【发布时间】:2016-12-21 20:58:46
【问题描述】:
我找到了以下代码来执行 HTTP POST。它说我不直接在 UI/主线程中运行这些代码。创建一个 AsyncTask 并将代码放在 doInBackground 方法中。怎样才能让它在asynctask下运行。
String dataUrl = "http://example.com";
String dataUrlParameters = "email="+"pp@gmail.com"+"&name="+"priyabrat"+"&message="+"Message_here";
URL url;
HttpURLConnection connection = null;
try {
// Create connection
url = new URL(dataUrl);
connection = (HttpURLConnection) url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
connection.setRequestProperty("Content-Length","" + Integer.toString(dataUrlParameters.getBytes().length));
connection.setRequestProperty("Content-Language", "en-US");
connection.setUseCaches(false);
connection.setDoInput(true);
connection.setDoOutput(true);
// Send request
DataOutputStream wr = new DataOutputStream(
connection.getOutputStream());
wr.writeBytes(dataUrlParameters);
wr.flush();
wr.close();
// Get Response
InputStream is = connection.getInputStream();
BufferedReader rd = new BufferedReader(new InputStreamReader(is));
String line;
StringBuffer response = new StringBuffer();
while ((line = rd.readLine()) != null) {
response.append(line);
response.append('\r');
}
rd.close();
String responseStr = response.toString();
Log.d("Server response",responseStr);
} catch (Exception e) {
e.printStackTrace();
} finally {
if (connection != null) {
connection.disconnect();
}
}
【问题讨论】:
-
我编辑了我的答案。请看一下。