分页拉取

            Integer page = 0;
            List List;
            do {
                page++;    
                //这里要睡一一点时间
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            } while (List != null);

你可能感兴趣的:(分页拉取)