将PHP echo读入Android中的字符串

将PHP echo读入Android中的字符串,第1张

概述我需要阅读以下回声:http://wee.co.il/Ski/weatherScript.php?op=3成字符串,我尝试过:classRetreiveEchoextendsAsyncTask<String,Void,String>{privatestaticfinalStringTAG="Her";@OverrideprotectedStringdoInBackground(String...para

我需要阅读以下回声:

http://wee.co.il/Ski/weatherScript.php?op=3

成字符串,我尝试过:

class RetreiveEcho extends AsyncTask<String, VoID, String> {    private static final String TAG = "Her";    @OverrIDe    protected String doInBackground(String... params) {        DefaulthttpClIEnt httpclIEnt = new DefaulthttpClIEnt();        httpPost httppost = new httpPost("http://wee.co.il/Ski/weatherScript.PHP?op=3");        Log.d(TAG, "Hello!");        try {            httpResponse response = httpclIEnt.execute(httppost);            Log.d(TAG, ""+response);        } catch (ClIEntProtocolException e) {            // Todo auto-generated catch block            e.printstacktrace();        } catch (IOException e) {            // Todo auto-generated catch block            e.printstacktrace();        }        return null;    }}@H_404_11@

现在,我只在日志中看到:

 org.apache.http.message.BasichttpResponse@4132e5a8@H_404_11@

解决方法:

您代码中的httpResponse对象是一个保存响应的Java对象.这不是一个普通的字符串.因此,打印对象将得到给定的日志输出.要访问PHP echo,您可以尝试以下代码:

response = httpClIEnt.execute(targetHost, targetGet);httpentity entity = response.getEntity();String HTMLResponse = EntityUtils.toString(entity);@H_404_11@          总结       

以上是内存溢出为你收集整理的将PHP echo读入Android中的字符串全部内容,希望文章能够帮你解决将PHP echo读入Android中的字符串所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1211039.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-04
下一篇 2022-06-04

发表评论

登录后才能评论

评论列表(0条)

保存