我想从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中。
这是我的主要活动代码,名为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已经停止。” 我认为这与我尝试在Async任务中设置textView有关,但我不知道如何修复它或者我的代码是否正确发送http请求。 我所知道的是php和服务器的东西是正确的。 所有教程都展示了如何在主线程中执行此操作。当我这样做,我一直在主要的胎面错误消息的网络上得到一个网络。这是我的第一个使用http请求和异步任务的应用程序。 我是疯狂的边界。请帮我看看我哪里出错了,并提前致谢!
编辑: 这是我的stacktrace:
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异常
答案 0 :(得分:1)
对不起家伙我觉得这样的菜鸟。必须意外删除
setContentView(R.layout.activity_main);
这解释了为什么应用程序过早停止。 我也忘了在Async类中实例化TextView,它解释了空指针。谢谢大家的意见和帮助!