/samples/guide/src/main/java/okhttp3/recipes/SynchronousGet.java
https://gitlab.com/JoshLucid/okhttp · Java · 47 lines · 25 code · 7 blank · 15 comment · 2 complexity · de301bf548b0fe67adc82c16f7421adf MD5 · raw file
- /*
- * Copyright (C) 2014 Square, Inc.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- package okhttp3.recipes;
- import java.io.IOException;
- import okhttp3.Headers;
- import okhttp3.OkHttpClient;
- import okhttp3.Request;
- import okhttp3.Response;
- public final class SynchronousGet {
- private final OkHttpClient client = new OkHttpClient();
- public void run() throws Exception {
- Request request = new Request.Builder()
- .url("https://publicobject.com/helloworld.txt")
- .build();
- try (Response response = client.newCall(request).execute()) {
- if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
- Headers responseHeaders = response.headers();
- for (int i = 0; i < responseHeaders.size(); i++) {
- System.out.println(responseHeaders.name(i) + ": " + responseHeaders.value(i));
- }
- System.out.println(response.body().string());
- }
- }
- public static void main(String... args) throws Exception {
- new SynchronousGet().run();
- }
- }