0

晚上好。我在获得回复方面遇到了一些麻烦。我有两个类:带有方法 get() 的 MyHttpClient 和用于响应的 String。

public class MyHttpClient {

private static final String BASE_URL = "http://pgu.com";
private static String response;

private static AsyncHttpClient client = new AsyncHttpClient();

 public static void get(String url, RequestParams params, AsyncHttpResponseHandler responseHandler) {
      client.get(getAbsoluteUrl(url), params, responseHandler);
 }

 private static String getAbsoluteUrl(String relativeUrl) {
      return BASE_URL + relativeUrl;
  }

public static String getResponse() {
    return response;
}

public static void setResponse(String response) {
    response = response;
}

}

在第二堂课中,我使用 GET 方法。Html 在 LogCat 中打印,但 setResponse 不起作用。如何获取响应字符串作为 MyHttpClient 的字段?

public class MyHttpClientUsage {


public MyHttpClientUsage(){

}

public void getInfoAbout() throws HttpException{

    RequestParams params = new RequestParams();
    params.put("a", "Static");
    params.put("content", "47");

    MyHttpClient.get("", params, new AsyncHttpResponseHandler(){
         @Override
            public void onSuccess(String response) {
                System.out.println(response);   
                            //Write HTML in LogCat(work) 
                MyHttpClient.setResponse(response); //doesn't work
            }
    });
}

}

4

1 回答 1

4

您需要使用this.response = responsein ,MyHttpClient因为目前您只是重置您发送到方法中的参数。

最好设置方法参数final以避免这种情况。

于 2013-02-04T12:13:30.593 回答