public inbox for kawa@sourceware.org
 help / color / mirror / Atom feed
* java 11
@ 2018-12-02 23:01 daniel szmulewicz
  2018-12-03  1:50 ` Per Bothner
  0 siblings, 1 reply; 3+ messages in thread
From: daniel szmulewicz @ 2018-12-02 23:01 UTC (permalink / raw)
  To: kawa

Hi,

I wrote my first Kawa script, yay!
I wanted to explore Java interop, so the following script does a http
request with the new HttpClient that ships in Java 11. However, as you can
see, some methods needed to be fully qualified in order to make it work. Is
this a case of reflection not working with the new Java modules? Am I
missing something? Thank you!

-- Code below this line
(import (class java.net URI))
(import (class java.net.http HttpClient HttpRequest HttpResponse))

(define uri (URI:create "
http://cr.openjdk.java.net/~chegar/httpclient/02/javadoc/api/java.net.http/java/net/http/HttpClient.html
"))
(define body-handler (HttpResponse:BodyHandlers:ofString))
(define client (*:build (HttpClient:newBuilder)))
(define request (*:build (*:uri (HttpRequest:newBuilder) uri)))
(define response (java.net.http.HttpClient:send client request
body-handler))
(display (java.net.http.HttpResponse:body response))

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-12-03  2:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-02 23:01 java 11 daniel szmulewicz
2018-12-03  1:50 ` Per Bothner
2018-12-03  2:49   ` Per Bothner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).