< prev index next >

test/jdk/java/net/httpclient/HttpInputStreamTest.java

Print this page



   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.io.IOException;
  25 import java.io.InputStream;
  26 import java.io.InputStreamReader;
  27 import java.io.Reader;
  28 import java.net.URI;
  29 import jdk.incubator.http.HttpClient;
  30 import jdk.incubator.http.HttpHeaders;
  31 import jdk.incubator.http.HttpRequest;
  32 import jdk.incubator.http.HttpResponse;
  33 import java.nio.ByteBuffer;
  34 import java.nio.charset.Charset;
  35 import java.util.Iterator;
  36 import java.util.List;
  37 import java.util.Locale;
  38 import java.util.Optional;
  39 import java.util.concurrent.ArrayBlockingQueue;
  40 import java.util.concurrent.BlockingQueue;
  41 import java.util.concurrent.CompletableFuture;
  42 import java.util.concurrent.CompletionStage;
  43 import java.util.concurrent.Flow;
  44 import java.util.stream.Stream;
  45 import static java.lang.System.err;
  46 
  47 /*
  48  * @test
  49  * @summary An example on how to read a response body with InputStream...
  50  * @run main/othervm -Dtest.debug=true HttpInputStreamTest
  51  * @author daniel fuchs
  52  */



   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.io.IOException;
  25 import java.io.InputStream;
  26 import java.io.InputStreamReader;
  27 import java.io.Reader;
  28 import java.net.URI;
  29 import java.net.http.HttpClient;
  30 import java.net.http.HttpHeaders;
  31 import java.net.http.HttpRequest;
  32 import java.net.http.HttpResponse;
  33 import java.nio.ByteBuffer;
  34 import java.nio.charset.Charset;
  35 import java.util.Iterator;
  36 import java.util.List;
  37 import java.util.Locale;
  38 import java.util.Optional;
  39 import java.util.concurrent.ArrayBlockingQueue;
  40 import java.util.concurrent.BlockingQueue;
  41 import java.util.concurrent.CompletableFuture;
  42 import java.util.concurrent.CompletionStage;
  43 import java.util.concurrent.Flow;
  44 import java.util.stream.Stream;
  45 import static java.lang.System.err;
  46 
  47 /*
  48  * @test
  49  * @summary An example on how to read a response body with InputStream...
  50  * @run main/othervm -Dtest.debug=true HttpInputStreamTest
  51  * @author daniel fuchs
  52  */


< prev index next >