while ((line = br.readLine()) != null) {
以下の完全なコードのBufferedReader.readLine() を実行すると、IOException が発生しました。Exception.getMessage()
戻り値BufferedInputStream is closed 。
これは HTC デバイスでのみ発生し、Sony Ericsson XPERIA を使用すると発生しません。
私の完全なコード:
public static String downloadString(String url) throws MalformedURLException, IOException {
InputStream is = downloadStream(url);
//Convert stream into String
String line;
BufferedReader br = new BufferedReader(new InputStreamReader(is), 4096);
StringBuilder sb = new StringBuilder();
while ((line = br.readLine()) != null) {
sb.append(line);
}
br.close();
return sb.toString();
}
public static InputStream downloadStream(String url) throws MalformedURLException, IOException {
return connection(url).getInputStream();
}
private static HttpURLConnection connection(String s_url) throws MalformedURLException, IOException {
URL url = new URL(s_url);
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
urlConnection.connect();
return urlConnection;
}
すべてのデバイスで機能するより優れた downloadString メソッドを作成するにはどうすればよいですか?
前もって感謝します。あなたの答えに本当に感謝します