Is there a Java library for sending binary data via HTTP, HTTP Tunneling?

I would like to send fairly large chunks of data in binary format via HTTP, also called HTTP Tunneling .

I would like to use this method using Java for several Java Swing applications and, possibly, Android applications. Are there any good Java libraries for HTTP tunneling?

+2
source share
4 answers
+3
source

HttpURLConnection. No need for another library.

+1
source

You can, of course, use the Apache Commons HTTP library to send HTTP.

0
source

All Articles