内部类Java

时间:2013-02-04 12:11:56

标签: java android

晚上好。得到回应我有些麻烦。 我有两节课: MyHttpClient,方法为get(),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不起作用。如何将响应String作为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
            }
    });
}

}

1 个答案:

答案 0 :(得分:4)

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

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