我是android和PHP编程的新手,目前在从php页面打印我的echo语句时遇到问题,这很简单:

    <?php
    echo "Hey there response!";
    ?>


我当前在MainActivity中使用的是:

        setContentView(R.layout.activity_main);

    TextView txtView = (TextView) findViewById(R.id.txt);

    //ASYNC WAY
    new GetData(txtView).execute("");


其中AsyncTask的定义如下:

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


    GetData(TextView view){
        this.display = view;
        display = (TextView) findViewById(R.id.txt);
    }

    protected String doInBackground(String... message){
        HttpClient httpclient;
        HttpGet request;
        HttpResponse response = null;
        String result = "error0";
        try{
            httpclient = new DefaultHttpClient();
            request = new HttpGet("http://localhost/php/wamp.php");
            response = httpclient.execute(request);
        } catch (Exception e){
            result = "error1";
        }

        try{
            BufferedReader rd = new BufferedReader(new InputStreamReader(
                    response.getEntity().getContent()));
            String line="";
            while((line = rd.readLine()) != null){
                result = result + line;
            }
        } catch(Exception e){
            result = "error2";
        }
        return result;
    }

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


txtView中的消息变为error2,我不知道为什么。

编辑
我最初使用非AsyncTask方法读取输入流,但是由于网络错误,我已切换到AsyncTask。但是,由于我的应用程序中没有得到正确的回显,因此问题仍然存在。

最佳答案

对于yanki来说可能为时已晚,但对于此页面上遇到的任何其他人来说,都太晚了。

我用yanki的代码尝试了一下,并得到了与他相同的错误“错误2”。那时我注意到我没有更新清单文件以允许Internet权限。

 <uses-permission android:name="android.permission.INTERNET" />


我再次运行它,它运行完美。因此,使用yanki的代码并在清单文件中输入Internet权限,程序就可以运行。

09-11 12:18