我已成功从我的网站检索数据,但我无法发送信息并查看我发送的内容。 我在这里读了很多帖子,没有人能帮到我。这是我的JSON数据发送方功能。
protected void sendJson(final String email, final String pwd) {
Thread t = new Thread() {
public void run() {
Looper.prepare(); //For Preparing Message Pool for the child Thread
HttpClient client = new DefaultHttpClient();
// HttpConnectionParams.setConnectionTimeout(client.getParams(), 10000); //Timeout Limit
HttpResponse response;
JSONObject json = new JSONObject();
try {
HttpPost post = new HttpPost("https://www.google.com.br/mobile/test/");
json.put("name", email);
json.put("senha", pwd);
Log.d("TAG InfoDesejada", json.toString());
StringEntity se = new StringEntity(json.toString());
Log.d("TAG StringEnviada", se.toString());
se.setContentType(new BasicHeader(HTTP.CONTENT_TYPE, "application/json"));
post.setEntity(se);
response = client.execute(post);
/*Checking response */
if (response != null) {
InputStream in = response.getEntity().getContent(); //Get the data in the entity
Log.d("TAG TextoEnviado4", response.toString());
}
} catch (Exception e) {
e.printStackTrace();
Log.d("Error", "Cannot Estabilish Connection");
}
Looper.loop(); //Loop in the message queue
}
};
t.start();
}
然后我调用mainActivity:sendJson("email@dot.com", "password");
我不确定我是否正确发送数据,但如果我不知道如何检索数据,或者无论如何都要处理这些数据。 真的需要帮助。感谢。
答案 0 :(得分:0)
您不必在OnCreate()中放置需要一些时间在UI线程上执行的方法。 我想建议使用AsyncTask。
AsyncTask可以正确,轻松地使用UI线程。 此类允许您执行后台 操作并在UI线程上发布结果,而无需操作线程和/或处理程序。
这个例子:
private class DownloadFilesTask extends AsyncTask<URL, Integer, Long> {
protected Long doInBackground(URL... urls) {
int count = urls.length;
long totalSize = 0;
for (int i = 0; i < count; i++) {
totalSize += Downloader.downloadFile(urls[i]);
publishProgress((int) ((i / (float) count) * 100));
// Escape early if cancel() is called
if (isCancelled()) break;
}
return totalSize;
}
protected void onProgressUpdate(Integer... progress) {
setProgressPercent(progress[0]);
}
protected void onPostExecute(Long result) {
showDialog("Downloaded " + result + " bytes");
}
}
创建后,任务执行非常简单:
new DownloadFilesTask().execute(url1, url2, url3);