org.opentripplanner.util.HttpUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.util;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.StatusLine;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.client.methods.HttpHead;
import org.apache.http.config.SocketConfig;
import org.apache.http.impl.client.HttpClientBuilder;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.net.URI;
import java.util.concurrent.TimeUnit;
public class HttpUtils {
private static final long TIMEOUT_CONNECTION = 5000;
private static final int TIMEOUT_SOCKET = 5000;
public static InputStream getData(URI uri) throws IOException {
return getData(uri, null, null);
}
public static InputStream getData(String uri) throws IOException {
return getData(URI.create(uri));
}
public static InputStream getData(URI uri, String requestHeaderName, String requestHeaderValue) throws IOException {
HttpGet httpget = new HttpGet(uri);
if (requestHeaderValue != null) {
httpget.addHeader(requestHeaderName, requestHeaderValue);
}
HttpClient httpclient = getClient();
HttpResponse response = httpclient.execute(httpget);
if(response.getStatusLine().getStatusCode() != 200)
return null;
HttpEntity entity = response.getEntity();
if (entity == null) {
return null;
}
return entity.getContent();
}
public static void testUrl(String url) throws IOException {
HttpHead head = new HttpHead(url);
HttpClient httpclient = getClient();
HttpResponse response = httpclient.execute(head);
StatusLine status = response.getStatusLine();
if (status.getStatusCode() == 404) {
throw new FileNotFoundException();
}
if (status.getStatusCode() != 200) {
throw new RuntimeException("Could not get URL: " + status.getStatusCode() + ": "
+ status.getReasonPhrase());
}
}
private static HttpClient getClient() {
return HttpClientBuilder.create()
.setDefaultSocketConfig(SocketConfig.custom().setSoTimeout(TIMEOUT_SOCKET).build())
.setConnectionTimeToLive(TIMEOUT_CONNECTION, TimeUnit.MILLISECONDS)
.build();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy