Skip to content

Commit c5a7490

Browse files
Rahul Yadavpconcannon
Rahul Yadav
authored andcommittedMar 20, 2020
8240921: Minor correction to HttpResponse.BodySubscribers example
The fix updates the incorrect example of the usage of the class java.net.http.HttpResponse.BodySubscribers. Reviewed-by: chegar, dfuchs, jboes, pconcannon
1 parent 37b7a23 commit c5a7490

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed
 

‎src/java.net.http/share/classes/java/net/http/HttpResponse.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -891,8 +891,8 @@ public interface BodySubscriber<T>
891891
* objects:
892892
*
893893
* <pre>{@code // Streams the response body to a File
894-
* HttpResponse<byte[]> response = client
895-
* .send(request, responseInfo -> BodySubscribers.ofByteArray());
894+
* HttpResponse<Path> response = client
895+
* .send(request, responseInfo -> BodySubscribers.ofFile(Paths.get("example.html"));
896896
*
897897
* // Accumulates the response body and returns it as a byte[]
898898
* HttpResponse<byte[]> response = client

‎test/jdk/java/net/httpclient/examples/JavadocExamples.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -165,8 +165,8 @@ void fromHttpResponse() throws Exception {
165165

166166
// HttpResponse.BodySubscribers class-level description
167167
// Streams the response body to a File
168-
HttpResponse<byte[]> response5 = client
169-
.send(request, responseInfo -> BodySubscribers.ofByteArray());
168+
HttpResponse<Path> response5 = client
169+
.send(request, responseInfo -> BodySubscribers.ofFile(Paths.get("example.html")));
170170

171171
// Accumulates the response body and returns it as a byte[]
172172
HttpResponse<byte[]> response6 = client

0 commit comments

Comments
 (0)
Please sign in to comment.