문제

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?

도움이 되었습니까?

해결책

다른 팁

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

HttpURLConnection. No need for another library.

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top