gpt4 book ai didi

php - 如何使用异步任务连接到android中的php?

转载 作者:行者123 更新时间:2023-11-30 03:21:30 24 4
gpt4 key购买 nike

我想通过 Android 应用程序从我服务器上的 php 文件中检索数据。我一直在寻找一个工作示例 2 天,我能找到的是:

http://www.androidaspect.com/2013/05/how-to-connect-android-with-php.html http://fahmirahman.wordpress.com/2011/04/21/connection-between-php-server-and-android-client-using-http-and-json/

我也看过很多关于 SO 的类似问题,但我尝试重新创建它是徒劳的。如果您认为我的问题重复,请原谅。

我基本上想像这样在 php 脚本上检索回显的 php 数据:

<?php
echo "Hello PHP";
?>

并将其显示在 TextView 中。

这是我的主要 Activity 代码,名为 Home_Activity.java

package com.example.httppost;


import java.io.BufferedReader;
import java.io.InputStreamReader;

import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;

import android.app.Activity;
import android.os.AsyncTask;
import android.os.Bundle;
import android.widget.TextView;

public class MainActivity extends Activity {

TextView textView;

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// TextView to display result
TextView textView = (TextView) findViewById(R.id.text_display);
new GetData(textView).execute("");
}

private class GetData extends AsyncTask<String, Void, String> {
private TextView display;

GetData(TextView view){
this.display = view;
}

protected String doInBackground(String... message) {
HttpClient httpclient;
HttpGet request;
HttpResponse response = null;
String result = "error";
// TextView to display result

// Try to connect using Apache HttpClient Library
try {
httpclient = new DefaultHttpClient();
request = new HttpGet("http://10.0.2.2:8080/food.php");
response = httpclient.execute(request);
}

catch (Exception e) {
// Code to handle exception
result = "error";
}

// response code
try {
BufferedReader rd = new BufferedReader(new InputStreamReader(
response.getEntity().getContent()));
String line = "";
while ((line = rd.readLine()) != null) {

// Appending result to textview
result = result + line ;
}
} catch (Exception e) {
// Code to handle exception
result = "error";
}
return result;
}

protected void onPostExecute(String result) {
this.display.setText(result);
}

}}

错误日志看起来像象形文字。该程序短暂执行,然后我得到可怕的“不幸的是 home_automation 已停止。”我认为这与我尝试在异步任务中设置 textView 有关,但我不知道如何解决这个问题,也不知道我发送 http 请求的代码是否正确。我所知道的是 php 和服务器的东西是正确的。所有教程都展示了如何在主线程中执行此操作。当我这样做时,我不断收到有关主胎面错误消息的网络。这是我的第一个使用 http 请求和异步任务的应用程序。我快疯了。请帮助我指出我哪里出错了,在此先感谢您!

编辑:这是我的堆栈跟踪:

 FATAL EXCEPTION: main
java.lang.NullPointerException
at com.example.httppost.MainActivity$GetData.onPostExecute(MainActivity.java:69)
at com.example.httppost.MainActivity$GetData.onPostExecute(MainActivity.java:1)
at android.os.AsyncTask.finish(AsyncTask.java:631)
at android.os.AsyncTask.access$600(AsyncTask.java:177)
at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:644)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5103)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:525)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
at dalvik.system.NativeStart.main(Native Method)

我 99% 确定问题出在 textView.setText(result);我已经编辑了我的代码,但我仍然收到 NullPointer 异常

最佳答案

对不起大家,我觉得自己像个菜鸟。一定是不小心删了

setContentView(R.layout.activity_main);

这解释了为什么应用程序会过早停止。我也忘记了在解释空指针的 Async 类中实例化 TextView。感谢大家的评论和帮助!

关于php - 如何使用异步任务连接到android中的php?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19056528/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com