2

I would like to send quite large chunks of data in a binary format over HTTP, also called HTTP Tunneling.

I would like to use this technique using Java for a few Java Swing applications and maybe an Android application. Is there any good Java libraries for HTTP Tunneling?

Jonas
  • 121,568
  • 97
  • 310
  • 388

4 Answers4

3

Here is another implementation in Jodd library. There is base implementation named HttpTunnel. Here is a simple example how to use it: https://github.com/oblac/tools/blob/master/src/jodd/tools/http/TinyTunnel.java

Majid Azimi
  • 5,575
  • 13
  • 64
  • 113
3

JHttpTunnel

Peter Knego
  • 79,991
  • 11
  • 123
  • 154
1

HttpURLConnection. No need for another library.

user207421
  • 305,947
  • 44
  • 307
  • 483
0

You can certainly use Apache Commons HTTP library to send HTTP.

duffymo
  • 305,152
  • 44
  • 369
  • 561