I am using apache commons-io FileUtils
for downloading a file into android device from given url.
FileUtils.copyURLToFile(new URL(urlString), tempFolderFile)
This works very well under normal internet speeds, but does not work at all under 2G internet speed (1kB/sec).
Is this a limitation with apache commons-io library or is there a way to achieve download with this library ?