How to detect Internet connection speed with Java?

前端 未结 3 1060
夕颜
夕颜 2020-12-17 02:40

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 th

相关标签:
3条回答
  • 2020-12-17 02:49

    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!

    0 讨论(0)
  • 2020-12-17 02:55

    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.

    0 讨论(0)
  • 2020-12-17 03:01

    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.

    0 讨论(0)
提交回复
热议问题