【问题标题】:Printing out results of Json API Request on Java/Android在 Java/Android 上打印 Json API 请求的结果
【发布时间】:2015-01-19 19:42:28
【问题描述】:

我正在使用 Konstantin Burov 在 Stackoverflow 帖子 (Make an HTTP request with android) 上演示的以下指南:

首先,请求访问网络的权限,将以下内容添加到您的清单中:

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

那么最简单的方法就是使用Android捆绑的Apache http客户端:

    HttpClient httpclient = new DefaultHttpClient();
    HttpResponse response = httpclient.execute(new HttpGet(URL));
    StatusLine statusLine = response.getStatusLine();
    if(statusLine.getStatusCode() == HttpStatus.SC_OK){
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        response.getEntity().writeTo(out);
        out.close();
        String responseString = out.toString();
        //..more logic
    } else{
        //Closes the connection.
        response.getEntity().getContent().close();
        throw new IOException(statusLine.getReasonPhrase());
    }

如果您希望它在单独的线程上运行,我建议您扩展 AsyncTask:

class RequestTask extends AsyncTask<String, String, String>{

    @Override
    protected String doInBackground(String... uri) {
        HttpClient httpclient = new DefaultHttpClient();
        HttpResponse response;
        String responseString = null;
        try {
            response = httpclient.execute(new HttpGet(uri[0]));
            StatusLine statusLine = response.getStatusLine();
            if(statusLine.getStatusCode() == HttpStatus.SC_OK){
                ByteArrayOutputStream out = new ByteArrayOutputStream();
                response.getEntity().writeTo(out);
                out.close();
                responseString = out.toString();
            } else{
                //Closes the connection.
                response.getEntity().getContent().close();
                throw new IOException(statusLine.getReasonPhrase());
            }
        } catch (ClientProtocolException e) {
            //TODO Handle problems..
        } catch (IOException e) {
            //TODO Handle problems..
        }
        return responseString;
    }

    @Override
    protected void onPostExecute(String result) {
        super.onPostExecute(result);
        //Do anything with response..
    }
}

然后您可以通过以下方式提出请求:

   new RequestTask().execute("http://stackoverflow.com");

我的问题是我现在如何在字符串中发布实际结果?我得到的只是我执行 new RequestTask().execute(url).toString(); 时的地址;

【问题讨论】:

    标签: java android json android-asynctask get


    【解决方案1】:

    您的回复将作为参数传递给onPostExecute(String)。 您应该在此方法中处理响应。请注意,onPostExecute(String) 在 UI 线程上运行,因此您不能在此方法中执行冗长的操作。

    当您调用new RequestTask().execute(url).toString(); 时,您只是在调用AsyncTasktoString() 方法(execute()check the return value:它只是返回this,即您正在调用的AsyncTask @987654329 @开)。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-06-14
      • 2020-07-15
      • 2021-01-21
      • 1970-01-01
      • 1970-01-01
      • 2016-08-09
      相关资源
      最近更新 更多