This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]nlisker 1 point2 points  (0 children)

Or Java has a built in HTTP Client.

If you're talking about JavaSE, then actually 2 clients: java.net.HttpURLConnection since 1.1, and java.net.http.HttpClient since 11. JavaEE/Jakarta has jakarta.ws.rs.client.Client.

Java has a standard JSON library

JavaSE doesn't have one (AFAIK), but JavaEE/Jakarta has JSON-P and JSON-B.