6

In my Java app, how do I detect how fast the Internet connection speed is ? For instance, I use AT&T Fast DSL at home, I wonder if there is a way I can write a method that does the following :

int getInternetConnectionSpeed()
{
   ...
}

Which will return a number in kbps, something like 2800kbps [ 2.8 M ]

Edit : The reason I'm asking, is in my app, I can open multiple Internet streams, depending on the users' Internet connection speed, I want it to auto determine how many streams to open without chocking the app.

Frank
  • 30,590
  • 58
  • 161
  • 244
  • I think for this to truly work you'd have to have a server on the other end of your test that can handle speeds higher than the maxmimum limit of your AT&T connection... – FrustratedWithFormsDesigner Nov 08 '10 at 20:41
  • Even if you could get the "official" connection speed for the user's internets, that number would be wildly inaccurate for most real-world scenarios. Perhaps you should reconsider exactly why you need this information and find a different way to do whatever it is you're *really* trying to do. – Randolpho Nov 08 '10 at 20:45
  • Are your "streams" bandwidth limited, or will you end up with 1 stream dowloading as fast as possible vs 10 streams downloading as fast as possible (in which case you barely gain anything) – nos Nov 08 '10 at 21:03
  • 1
    Based on your edit, I'd say your best bet is to let the *user* configure the number of parallel streams to use. I assume you're doing some form of file sharing app? How would you feel if BitTorrent just *automatically* chose how many outgoing or incoming connections it would allow? – Randolpho Nov 08 '10 at 21:14

3 Answers3

2

Time how long it takes you to download a file of known (and sufficiently large) size.

If it takes you 60s to download 10MB, you have a (10 * 1024 * 8 / 60) Kbps or 1365 Kbps connection.

Reese Moore
  • 11,524
  • 3
  • 24
  • 32
2

But there are many speeds depending on where you want to connect to:

  • 127.0.0.1?
  • Your local subnet?
  • Your internet?

Since your JVM uses the local PC which uses the local net there is no way to get the DSL speed automatically.

Oh, and please notice, you might even be surfing long distance!

Daniel
  • 27,718
  • 20
  • 89
  • 133
2

I think that you could be thinking about the problem in the wrong way. Taking a snapshot of a connection speed is only an indication of their throughput at that instant in time. They could quite easily be running another application when you run test that sucks their bandwidth and then your measured values are worthless.

Instead, I think you should be constantly adding or removing threads depending on whether it increases or decreases their throughput. I'd suggest something like this (pseudo code only):

while(true) {
  double speedBeforeAdding = getCurrentSpeed();
  addThread();
  // Wait for speed to stabilise
  sleep(20 seconds);
  double speedAfterAdding = getCurrentSpeed();
  if(speedAfterAdding < speedBeforeAdding) {
    // Undo the addition of the new thread
    removeThread();
    // Wait for speed to stabilise
    sleep(20 seconds);

    if(getNumberOfThreads() > 1) {
      double speedBeforeRemoving = getCurrentSpeed();
      // Remove a thread because maybe there's too many
      removeThread();
      // Wait for speed to stabilise
      sleep(20 seconds);
      double speedAfterRemoving = getCurrentSpeed();
      if(speedAfterRemoving < speedBeforeRemoving) {
        // Add the thread back
        addThread();
        // Wait for speed to stabilise
        sleep(20 seconds);
      }
    }
  }
}

You can fiddle with the sleep timings to suit. I'm assuming here that getCurrentSpeed() returns the throughput of all download threads and that you're able to dynamically open and close threads during your application's execution.

Catchwa
  • 5,845
  • 4
  • 31
  • 57