私は、アクティビティのonCreateメソッドにメソッド名Request()を持っています。アクティビティのHTTP応答文字列にアクセス
private void Request() {
new PostDataAsyncTask(textEmail, tValue).execute();
}
IAMのがそれで2つの文字列を渡すと、次のように非同期クラスがある:
public class PostDataAsyncTask extends AsyncTask<String, String, String> {
GameActivity game= new GameActivity();
private String data,data1;
public PostDataAsyncTask(String textEmail, String hello) {
data = textEmail;
data1= hello;
}
long date = System.currentTimeMillis();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("MMM MM dd, yyyy h:mm a");
String dateString = simpleDateFormat.format(Long.valueOf(date));
protected void onPreExecute() {
super.onPreExecute();
}
@Override
protected String doInBackground(String... strings) {
try {
postText();
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(String lenghtOfFile) {
}
private void postText(){
try{
String postReceiverUrl = "http://techcube.pk/game/game.php";
HttpClient httpClient = new DefaultHttpClient();
HttpPost httpPost = new HttpPost(postReceiverUrl);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("email", data));
nameValuePairs.add(new BasicNameValuePair("score", data1));
nameValuePairs.add(new BasicNameValuePair("datetime", dateString));
httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpClient.execute(httpPost);
HttpEntity resEntity = response.getEntity();
if (resEntity != null) {
String responseStr = EntityUtils.toString(resEntity).trim();
Log.v("SuccesS", "Response: " + responseStr);
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
は、今私が欲しいものを私がposttext生成された私のMainActivityでresponseStrの値を取得したいということですメソッドと呼ばれる。 MainActivityにこのresponseStr値を表示するにはどうすればよいですか? PostDataAsyncTaskという名前の新しいクラスがあることを忘れないでください。このクラスからresponseStrにアクセスしてmainActivityにトーストまたはTextviewとして表示する方法はありますか? 助けてください
私はこの卿を試しましたが、NullPointerExceptionという例外があります –
もう一度見てください。私はあなたの試みにもっと具体的に答えを書き直しました。 – Redshirt
最後にありがとうあなたはチャンピオンです:) –