src/main/java/com/nq/utils/http/HttpRequest.java
@@ -86,13 +86,10 @@ String tempLine = null; if (httpURLConnection.getResponseCode() >= 300) { throw new Exception("HTTP Request is not success, Response code is " + httpURLConnection .getResponseCode()); } try { inputStream = httpURLConnection.getInputStream(); inputStreamReader = new InputStreamReader(inputStream); //reader = new BufferedReader(inputStreamReader); reader = new BufferedReader(new InputStreamReader(connection.getInputStream(),"UTF-8")); while ((tempLine = reader.readLine()) != null) {