閱讀我得到這個錯誤,同時訪問一個PHP腳本:錯誤從html.class
W/System.err: Error reading from ./org/apache/harmony/awt/www/content/text/html.class
有問題的代碼片段如下:
URL url = "http://server.com/path/to/script"
is = (InputStream) url.getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
is.close();
該錯誤是在第二行拋出。對搜索錯誤的Google搜索結果爲0。這個警告不影響我的應用程序的流程,它更多的是煩惱而不是問題。它也只發生在API 11設備上(在API 8設備上工作正常)
你可以發佈你的整個Logcat –
@K_Anas這是我的全部錯誤 –