About 50 results
Open links in new tab
  1. terminology - what is Java API? - Stack Overflow

    Dec 30, 2010 · I know API is a set of rules and protocols.can anyone explain me with example what is a Java API and its functionality...

  2. java - Obtain and download Javadoc (JDK API documentation) to a …

    36 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 from the …

  3. Creating an API in Java for the first time - Stack Overflow

    Dec 19, 2014 · One of the best guides to API design I've read is " " (PDF), which has some great, platform-neutral guidance as to how to create an API for an application or service. Some of the most …

  4. java - HTTP Status 405 - Method Not Allowed Error for Rest API - Stack ...

    In above code variable "ver" is assign to null, print "ver" before returning and see the value. As this "ver" having null service is send status as "204 No Content". And about status code "405 - Method Not …

  5. 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 manually …

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

    Dec 28, 2015 · How do I do a HTTP GET in Java? The simplest way that doesn't require third party libraries it to create a URL object and then call either openConnection or openStream on it. Note that …

  7. 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). This API created …

  8. java - How to fix gradle build failed due to void org.gradle.api ...

    May 6, 2023 · How to fix gradle build failed due to void org.gradle.api.internal.artifacts.dsl.LazyPublishArtifact.<init> (org.gradle.api.provider.Provider) error? …

  9. Sending HTTP POST Request In Java - Stack Overflow

    Jul 24, 2010 · Sending a POST request is easy in vanilla Java. Starting with a URL, we need t convert it to a URLConnection using url.openConnection();. After that, we need to cast it to a …

  10. 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 library is the …