About 10,600,000 results
Open links in new tab
  1. java - Obtain and download Javadoc (JDK API documentation) to a …

    When writing Java code, I refer extensively to the Javadoc—that is, the Java® Platform, Standard Edition & Java Development Kit Version x API Specification. I know how to read it online …

  2. How to do a SOAP Web Service call from Java class?

    Apr 11, 2013 · SOAP with Attachments API for Java (SAAJ) is mainly used for dealing directly with SOAP Request/Response messages which happens behind the scenes in any Web …

  3. terminology - what is Java API? - Stack Overflow

    Dec 30, 2010 · Exactly what you described, just for the Java language. Java API is a set of libraries that are found in the standard Java distribution, and is called the JRE (Java Runtime). …

  4. How to send SMS in Java - Stack Overflow

    Apr 3, 2010 · The best SMS API I've seen in Java is JSMPP. It is powerful, easy to use, and I used it myself for an enterprise-level application (sending over 20K SMS messages daily). …

  5. What is the difference between a Java API and a library?

    Aug 24, 2009 · The API (Application Programming Interface) is what a library looks like from the outside for a program that's using it. It's the "face" of a library to other programs. The API of a …

  6. Simple HTTP server in Java using only Java SE API

    Sep 17, 2010 · Is there a way to create a very basic HTTP server (supporting only GET/POST) in Java using just the Java SE API, without writing code to manually parse HTTP requests and …

  7. How do I do a HTTP GET in Java? - Stack Overflow

    Dec 28, 2015 · The standard Java API classes that you use here don't do that for you. On the other hand, using the standard API classes has the advantage that you don't need to include a …

  8. java - Spring Boot REST API - request timeout? - Stack Overflow

    I have a Spring Boot REST service that sometimes call third party services as a part of a request. I would like to set a timeout on all my resources (let's say 5 seconds), so that if any request ha...

  9. How to parse JSON in Java - Stack Overflow

    java's built in JSON libraries are the quickets way to do so, but in my experience GSON is the best library for parsing a JSON into a POJO painlessly.

  10. java - javax.websocket client simple example - Stack Overflow

    Can someone please provide me very simple example of websocket client using javax.websocket? I want to connect to websocket (ws://socket.example.com:1234), send …