File tree 2 files changed +6
-6
lines changed
src/java.net.http/share/classes/java/net/http
test/jdk/java/net/httpclient/examples
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -891,8 +891,8 @@ public interface BodySubscriber<T>
891
891
* objects:
892
892
*
893
893
* <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" ));
896
896
*
897
897
* // Accumulates the response body and returns it as a byte[]
898
898
* HttpResponse<byte[]> response = client
Original file line number Diff line number Diff line change 1
1
/*
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.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -165,8 +165,8 @@ void fromHttpResponse() throws Exception {
165
165
166
166
// HttpResponse.BodySubscribers class-level description
167
167
// 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" ) ));
170
170
171
171
// Accumulates the response body and returns it as a byte[]
172
172
HttpResponse <byte []> response6 = client
You can’t perform that action at this time.
0 commit comments