我有一个问题要问大家。我是追求速度的,我需要经常使用这种方法,所以这种方法效率越高越好。
我的代码:
private void method(final String name) {
final URL url = new URL("http://www.somewebsite.com/blah.php?name=" + name);
final BufferedReader in = new BufferedReader(new InputStreamReader(url.openConnection().getInputStream()));
final String totalText = in.readLine();
in.close();
//other stuff using the totalText variable
}
这种方法有效,但我想问是否有更有效的方法来工作。
关于我正在阅读的代码的重要说明:
- 该网站的整个源代码只有一行。
- 网站代码没有HTML标记。都是原始文本。