对于我的应用程序,我需要从本地网络上的服务器上托管的网页获取最新数据。
所以我要求HTTP GET
的最新页面,当收到数据时,我发送另一个请求。
根据我目前的实施情况,每个请求可达到100 - 120毫秒左右。是否有可能使这更快,因为它与请求的URL相同。
例如,保持连接对页面开放并grey最新数据而不设置新连接?
此页面大约为900-1100字节。
HTTP获取代码:
public static String makeHttpGetRequest(String stringUrl) {
try {
URL url = new URL(stringUrl);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setReadTimeout(300);
con.setConnectTimeout(300);
con.setDoOutput(false);
con.setDoInput(true);
con.setChunkedStreamingMode(0);
con.setRequestMethod("GET");
return readStream(con.getInputStream());
} catch (IOException e) {
Log.e(TAG, "IOException when setting up connection: " + e.getMessage());
}
return null;
}
阅读输入流
private static String readStream(InputStream in) {
BufferedReader reader = null;
StringBuilder total = new StringBuilder();
try {
String line = "";
reader = new BufferedReader(new InputStreamReader(in));
while ((line = reader.readLine()) != null) {
total.append(line);
}
} catch (IOException e) {
Log.e(TAG, "IOException when reading InputStream: " + e.getMessage());
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return total.toString();
}
答案 0 :(得分:0)
据我所知,没有像你要求的实现。我一直在处理很多http请求,你可以做的最好的事情是你的代码。还有一件事需要注意......你的连接可能很慢,并且取决于连接时间可能更多,或者在某些情况下,我已经处理了很多连接的超时不够大,但这是服务器问题。
在我看来,你应该使用你现在拥有的东西。