|
@ -0,0 +1,27 @@ |
|
|
|
|
|
import java.io.BufferedReader; |
|
|
|
|
|
import java.io.IOException; |
|
|
|
|
|
import java.io.InputStreamReader; |
|
|
|
|
|
import java.net.HttpURLConnection; |
|
|
|
|
|
import java.net.URL; |
|
|
|
|
|
|
|
|
|
|
|
public class HttpApi { |
|
|
|
|
|
public static String sendHttpGETRequest(String url) throws IOException { |
|
|
|
|
|
URL obj = new URL(url); |
|
|
|
|
|
HttpURLConnection httpURLConnection = (HttpURLConnection) obj.openConnection(); |
|
|
|
|
|
httpURLConnection.setRequestMethod("GET"); |
|
|
|
|
|
int responseCode = httpURLConnection.getResponseCode(); |
|
|
|
|
|
|
|
|
|
|
|
if (responseCode == HttpURLConnection.HTTP_OK) { |
|
|
|
|
|
BufferedReader in = new BufferedReader(new InputStreamReader(httpURLConnection.getInputStream())); |
|
|
|
|
|
String inputLine; |
|
|
|
|
|
StringBuffer response = new StringBuffer(); |
|
|
|
|
|
|
|
|
|
|
|
while ((inputLine = in .readLine()) != null) { |
|
|
|
|
|
response.append(inputLine); |
|
|
|
|
|
} in .close(); |
|
|
|
|
|
|
|
|
|
|
|
return response.toString(); |
|
|
|
|
|
} |
|
|
|
|
|
return null; |
|
|
|
|
|
} |
|
|
|
|
|
} |