0

我有一个android应用程序,我从多个url中提取数据,然后保存为字符串的arraylist。它工作正常,但要从 13 个 url 获取数据,需要将近 15-20 秒。在使用 phonegap 构建的同一个应用程序中,从同一组 url 获取数据需要 3-4 秒。这是下面的代码。

        @Override
        protected String doInBackground(String... params) {
            client = new DefaultHttpClient();
            for(int i=0;i<url.size();i++)
            {
                get = new HttpGet(url.get(i));
                try {
                    response = client.execute(get);
                } catch (ClientProtocolException e) {
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
                entity = response.getEntity();
                InputStream is = null;
                try {
                    is = entity.getContent();
                } catch (IllegalStateException e) {         
                    e.printStackTrace();
                } catch (IOException e) {
                    e.printStackTrace();
                }
                BufferedReader reader = new BufferedReader(
                        new InputStreamReader(is));
                StringBuffer buffer = new StringBuffer();
                String line = null;
                do {
                    try {
                        line = reader.readLine();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
                    buffer.append(line);
                } while (line != null);
                String str = buffer.toString();
                param.add(str);             
            }
            return null;
        }

谁能建议我如何加快执行速度并减少提取时间。

4

1 回答 1

0

您可以尝试从 for 循环中为每次迭代启动一个单独的线程。像这样:

for(int i = 0; i < url.size(); i++){ 
    //start thread that gets data from url and adds it to the list
}
于 2013-05-07T10:18:08.897 回答