Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8230839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T17:16:01+00:00 2026-06-07T17:16:01+00:00

My program creates an arraylist of 5000 to 60000 records depending on time of

  • 0

My program creates an arraylist of 5000 to 60000 records depending on time of day. I want to split it into as many arraylists as possible that each arraylist will have 1000 records. I looked at many examples online and tried a few things but I ran into strange problems. Can you please show me an example of this?

Regards!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T17:16:03+00:00Added an answer on June 7, 2026 at 5:16 pm
      public static <T> Collection<Collection<T>> split(Collection<T> bigCollection, int maxBatchSize) {
        Collection<Collection<T>> result = new ArrayList<Collection<T>>();
    
        ArrayList<T> currentBatch = null;
        for (T t : bigCollection) {
          if (currentBatch == null) {
            currentBatch = new ArrayList<T>();
          } else if (currentBatch.size() >= maxBatchSize) {
            result.add(currentBatch);
            currentBatch = new ArrayList<T>();
          }
    
          currentBatch.add(t);
        }
    
        if (currentBatch != null) {
          result.add(currentBatch);
        }
    
        return result;
      }
    

    Here’s how we use it (assuming emails an a large ArrayList of email addresses:

    Collection<Collection<String>> emailBatches = Helper.split(emails, 500);
        for (Collection<String> emailBatch : emailBatches) {
            sendEmails(emailBatch);
            // do something else...
            // and something else ...
        }
    }
    

    where emailBatch would iterate over the collection like this:

    private static void sendEmails(Collection<String> emailBatch){
        for(String email: emailBatch){
            // send email code here.
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

With win32api, I want that the following program creates two process and creates a
In Form1 I have PageControl. At run time my program creates tab sheets. In
use this website a lot but first time posting. My program creates a number
my program creates expandable Lists, and I have implemented swipes- but I cant figure
Suppose my program creates a large array of data which I then save with
I have made a program that scans rss feeds. This same program creates feeds
I have a program which creates JButtons which are then added to a JPanel
I have a program that creates multiple text files of rdf triples. I need
I have a program that creates a JFrame and makes it visible. Is there
I have a program that creates a small file in the Bin directory for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.