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 8454843
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T12:07:52+00:00 2026-06-10T12:07:52+00:00

I do have access to few Servers say A, B, C, D and E.

  • 0

I do have access to few Servers say A, B, C, D and E. I’d like to choose data from these servers one by one in a round robin way. I am new to Java and threads, It would be a great help if you could help me with this.

What I am trying to do is to load a map in my application, I send HTTP requests to the servers. These Servers revert response in Bitmap format, I arrange these Images (Tiles) and show it in my application, but I am doing it it sequentially. E.g. I request Server A first to get the tiles then Server B and so on..I would like to get the tiles in such a way that Server A downloads one Image, Server B does the other. If I if I’d be doing it all alone using one server without using Multithreading it would take a long time to display whole Map.

  • 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-10T12:07:53+00:00Added an answer on June 10, 2026 at 12:07 pm

    use modulo see example:
    (used String as the url)

    public static final int MAX_SERVER = 4;

    public static void main(String[] args)
    {
    
        String urlarr[] = new String[MAX_SERVER];
        init(urlarr);
    
        int idx = 0;
        while(idx < 1000){
            String next = urlarr[idx++%urlarr.length];
            System.out.println(next);
        }
    }
    
    private static void init(String[] urlarr)
    {
        for(int i=0 ; i<urlarr.length ; i++){
            urlarr[i] = "url("+i+")";
        }
    
    }
    

    using module size of array on idx make it iterates over all available indexes 0,1,2,3 in this case.
    part of output:

    url(0)
    url(1)
    url(2)
    url(3)
    url(0)
    url(1)
    url(2)
    url(3)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a data access library that has a few classes that all implement
I have a MS Access database with few tables and a form. When more
I have a form in MS access. I have created a few textboxs in
I have Access 2003, and Crystal Reports 10 (the one that comes with VS2008
I have Access table with fields, in which there is some data and path
Here is what i am trying to achieve: I have a few Linux servers
We have a bunch of VB6 applications that access two different database servers (both
Lets say I have a file with a .quote extension. I'd like the web
Let's say that I have a site where once the user selects a few
I have a few servers behind a Load Balancer running Apache with PHP we're

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.