gpt4 book ai didi

php - 如何在我的 android 应用程序上打印 PHP echo?

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

我是 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的代码试了一下,得到了和他一样的错误“error 2”。然后我注意到我没有更新 list 文件以允许互联网权限。

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

我再次运行它,它运行良好。因此,使用 yanki 的代码并在 list 文件中输入互联网权限,该程序应该可以运行。

关于php - 如何在我的 android 应用程序上打印 PHP echo?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22177821/

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