|
@@ -76,6 +76,8 @@ public class HttpUtils
|
|
|
connection.setRequestProperty("connection", "Keep-Alive");
|
|
|
connection.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
|
|
|
connection.connect();
|
|
|
+ log.info("connection.getInputStream() - {}", connection.getInputStream());
|
|
|
+ log.info("contentType - {}", contentType);
|
|
|
in = new BufferedReader(new InputStreamReader(connection.getInputStream(), contentType));
|
|
|
String line;
|
|
|
while ((line = in.readLine()) != null)
|