Android - 使用AsyncTask发送HTTP请求按钮单击|委托问题

时间:2016-08-30 15:14:07

标签: java android android-asynctask delegates

我准备写一个小应用程序。在按钮上单击我在自定义异步任务类中发送http请求。我想在EditText字段和ListView中将此值写为项目。我现在的问题是我想将请求的值返回给主线程以进一步处理它。我四处搜索,发现了一个带接口的方法。这是我的asynctask类:

    public class Request extends AsyncTask<String,Void,String> {
    public AsyncResponse delegate=null;
    private MainActivity mAct;
    public Request(MainActivity mainActivity){
        this.mAct = mainActivity;
    }
    @Override
    protected String doInBackground(String... url){
        String returnString = "";
        try {
            URL u = new URL(url[0]);
            final HttpURLConnection connection = (HttpURLConnection)u.openConnection();
            BufferedInputStream bis = new BufferedInputStream(connection.getInputStream());
            byte[] content = new byte[1024];
            int bytesRead = 0;
            String strContent = "";
            while((bytesRead = bis.read(content)) != -1){
                strContent += new String(content,0,bytesRead);
            }
            returnString = strContent;
        } catch (Exception e){

        } finally {
            return returnString;
        }
    }
    protected void onPostExecute(String result){
        delegate.processFinish(result);
    }
}

这是我的MainActivity:

    protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final Button btnSend = (Button)findViewById(R.id.btnSendMessage);
    final ListView lv = (ListView)findViewById(R.id.treeView);
    final EditText editText = (EditText)findViewById(R.id.txtReqID);

    final MainActivity ma = this;
    final ArrayList<String> arrList = new ArrayList<String>();
    final ArrayAdapter<String> arrAdapter = new ArrayAdapter<String>(getApplicationContext(),R.layout.simple_list_item_1,arrList);

    btnSend.setOnClickListener(new View.OnClickListener(){
        public void onClick(View v){
            String t = new String("http://myhttprequest");
            Request r = new Request(ma);
            public void onCreate(Bundle savedInstanceState){
                r.delegate = this;
            }

            editText.setText(returnValue);
            lv.setAdapter(arrAdapter);
            arrList.add(returnValue);
            arrAdapter.notifyDataSetChanged();
        }
    });
}
public interface AsyncResponse{
    void processFinish(String output);
}

问题是我必须将每个变量声明为final,因为我在函数中访问它们。我现在对我的代码感到不满意,我也不知道如何才能完成这项工作。非常感谢任何帮助。

祝你好运

2 个答案:

答案 0 :(得分:1)

尝试这种方式:

 btnSend.setOnClickListener(new View.OnClickListener(){
        public void onClick(View v){
           String t = new String("http://myhttprequest");
           Request r = new Request(ma){
               protected void onPostExecute(String result){
                   editText.setText(result);
                   lv.setAdapter(result);
                   arrList.add(result);
                   arrAdapter.result();
               }
          };

     }
});

答案 1 :(得分:0)

你应该做什么我很简单。

  1. 创建一个将“delegate”作为param的AsyncTask构造函数 1.1如果“委托”是一个活动(在你的情况下),只要确保它在WeakReference中保留(以避免内存泄漏)
  2. 你喜欢http
  3. 如果要调度回调,只需使用“委托”参数(检查为空 - 因为它是WeakReference)。
  4. 干杯!