android - DownloadTask - 如何将源代码放在对话框中

时间:2015-01-21 03:50:46

标签: java android

我有以下代码我把它点击我想把urlAll(源代码)放在AlertDialog

        String urlAll="localhost/admin";
        new DownloadTask().execute(urlAll);

        new AlertDialog.Builder(PrintDemo.this).setTitle("Message").setMessage(urlAll).setPositiveButton(android.R.string.ok, null).setCancelable(false).create().show();

在运动中我得到了以下信息

以上代码的结果(但我想要源代码)我正在使用DownloadTask

本地主机/管理

这里是downloadtask funtion

 private class DownloadTask extends AsyncTask<String, Void, String>{

     @Override
     protected String doInBackground(String... urls) {
         HttpResponse response = null;
         HttpGet httpGet = null;
         HttpClient mHttpClient = null;
         String s = "";

         try {
             if(mHttpClient == null){
                 mHttpClient = new DefaultHttpClient();
             }


             httpGet = new HttpGet(urls[0]);


             response = mHttpClient.execute(httpGet);
             s = EntityUtils.toString(response.getEntity(), "UTF-8");


         } catch (IOException e) {
             e.printStackTrace();
         } 
         return s;
     }

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

作为您问题的答案,我会在此发布。

我为你创造了一个要点。

https://gist.github.com/eneim/59df18b4f92065e7d409

请在要点中注释(如果没有,请创建一个github帐户)。我们不应该继续在这里讨论:)

请提供有关“ClickEvent”的更多信息。但基本上,流程应该是这样的。