5

我很困惑哪一个更适合使用 Restful 协议调用 php webservice。我确实使用了 API(HttpClient 和 HttpURLConnection)来调用 webservice。

使用HttpClient调用 Web 服务时会发生什么

  • 在 Froyo 上它工作得很好(在本地主机和服务器上)。
  • 在 JellyBean 上工作,但过了一段时间后就不能工作了
  • HttpClient 在 localhost 上运行良好,但在服务器上调用 werbservice 时出现问题。

使用HttpURLConnection调用 Web 服务时会发生什么

  • 在 Froyo 上无法正常工作(在 localhost 上)
  • 第二点与 HttpClient 的第二点相同
  • 我无法将 php webservice 页面重定向到另一个 php 页面。

当我调用 webservice abc.php(在本地主机和服务器上)并从这里我重定向到另一个页面,如 xyz.php。从 xyz.php 实际上以 json 形式将数据返回到 android 项目,但是当我使用 HttpClient 工作正常但此重定向不适用于 HttpURLConnection 时会发生什么。

HttpClient 代码

//calling the webservice using AsyncTask
public String makeHttpReqToSrvr(String url,String requestType,List<NameValuePair> params) {

    HttpEntity httpEntity=null;
    HttpResponse httpResp = null;

    try {

        if (requestType == "GET") {

            //connection time out
            HttpParams httpParameters = new BasicHttpParams();
            int timeout1 = 1000*8;
                int timeout2 = 1000*8;
            HttpConnectionParams.setConnectionTimeout(httpParameters, timeout1);
            HttpConnectionParams.setSoTimeout(httpParameters, timeout2);

            HttpClient httpClient = new DefaultHttpClient(httpParameters);
            String paramString =URLEncodedUtils.format(params, "utf-8");
            HttpGet httpGet = new HttpGet(url+"?"+paramString);
            httpResp = httpClient.execute(httpGet);
            httpEntity = httpResp.getEntity();

        }
        if (requestType == "POST") {
            // connection time out
            HttpParams httpParameters = new BasicHttpParams();
            int timeout1 = 1000*8;
                int timeout2 = 1000*8;
            HttpConnectionParams.setConnectionTimeout(httpParameters, timeout1);
            HttpConnectionParams.setSoTimeout(httpParameters, timeout2);

            HttpClient  httpClient = new DefaultHttpClient(httpParameters);
            HttpPost httpPost = new HttpPost(url);
            httpPost.setEntity(new UrlEncodedFormEntity(params));

            httpResp = httpClient.execute(httpPost);
            httpEntity = httpResp.getEntity();

        }

    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    } catch (ClientProtocolException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } 
    // -- End and Start read the data using bufferreader
    try {
        if(httpEntity != null)
            json = EntityUtils.toString(httpEntity);
            json = strBuilder.toString();
                Log.v("JSON", "data"+json);

    } catch (Exception e) {
        e.printStackTrace();
    } 
    return json;
}


HttpURL连接代码

public String makeHttpReqToSrvr(String url,String requestType,List<NameValuePair> params) {

    try {
        URL urlPath= null;
        String paramString = URLEncodedUtils.format(params, "utf-8");

        if (requestType == "GET") {
            urlPath = new URL(url+"?"+paramString);
        }
        if (requestType == "POST") {
            urlPath = new URL(url);
        }

        conn = (HttpURLConnection) urlPath.openConnection();
        conn.setReadTimeout(10000); 
            conn.setConnectTimeout(15000); 
        conn.setDoInput(true);
        conn.setDoOutput(true);

        if (requestType == "GET") {
            conn.setRequestMethod("GET");
        }
        if (requestType == "POST") {
            conn.setRequestMethod("POST");

        }
        //send the data to the server using post
        dos = new DataOutputStream(conn.getOutputStream());
        dos.writeBytes(paramString);
        dos.flush();

        // Starts the query
        conn.connect();
        int response = conn.getResponseCode();

        is = conn.getInputStream();

        // Convert the InputStream into a string
        json = readIt(is);

    } catch (MalformedURLException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        try {
            if (is != null) {
                is.close();
                dos.close();
                conn.disconnect();
            }
        } catch (IOException e) {

            e.printStackTrace();
        } 
    }
    return json;

如果上面
的代码有任何问题,请任何人建议我,并告诉我调用 web 服务的完美方式。我尝试了很多,但没有达到我的目标。如果您不明白上述问题,请向我提问。

Apache HTTP 客户端在 Eclair 和 Froyo 上的错误更少。这是这些版本的最佳选择。

google 建议将 HttpURLConnection 用于针对 Gingerbread 及更高版本的应用程序 在 Froyo 之前,HttpURLConnection 有一些令人沮丧的错误。那么弗罗约呢?我的应用程序在 froyo 和更高版本上运行。

哪个客户端最好?

任何帮助都会很有用。谢谢。

4

3 回答 3

1

你可以试试Square 的OKHTTP在这里查看 github 页面。

于 2014-02-20T13:17:01.060 回答
1

HttpUrlConnection 并不像 android google 工程师在 2010 年 IO 会议上所说的那样好。据他们说,这会对网络产生不利影响。参考:http ://www.youtube.com/watch?v=xHXn3Kg2IQE

使用 httpclient 或 Androidhttpclient

祝你好运

于 2013-11-11T10:54:44.177 回答
0

显然谷歌改变了主意

HttpClient 和 AndroidHttpClient 只能用于 FROYO 及更早版本。

从 GINGERBREAD 开始,建议使用HttpUrlConnection.

我听从了他们的建议,在很短的时间内原生使用 HUC(又名 HttpUrlConnection)后,我编写了一个更易于使用的小型库(~12kb jar)。

该库名为DavidWebb,您可以在其中找到许多指向其他 HTTP/REST 库的链接,尤其是针对 Android 的。

于 2013-12-14T21:24:10.840 回答