I'm making Android App with Jsoup. My code is as below.
String URL = “http://www.example.com/queryDFSRSS.jsp?zone=“
String zone_1 = “001”;
String zone_2 = “002”;
String zone_3 = “003”;
Document doc = Jsoup.connect(URL+zone_1).get();
. . . .
doc = Jsoup.connect(URL+zone_2).get();
. . . . .
doc = Jsoup.connect(URL+zone_3).get();
.. . . .
It takes long time. (about 2.4sec.. I guess, 0.8sec for each connection)
But, I think that they are same URL.. so it may be possible to get 3 zone data only 1 connection(slightly more times than 0.8 sec).
Is is possible?