()
| 91 | // Tries to parse the status code. Catches any exceptions and defaults to |
| 92 | // status 0 if an error occurred. |
| 93 | private void parseStatusCode() { |
| 94 | try { |
| 95 | this.statusCode = getRequest().getConnection().getResponseCode(); |
| 96 | } catch (IOException e) { |
| 97 | this.statusCode = 0; |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | // Tries to parse the data |
| 102 | private void parseData() { |