HttpServer - HttpExchange - Seekable Stream
问题 I work on a sample java http server and a .Net client (on tablet). using my http sever, the .Net client must be able to download files. It's working perfectly, but now I have to be able to resume download after a connection disruption. Here some code : Java server : ( It is launched in a seperate thread, hence the run method). public void run() { try { server = com.sun.net.httpserver.HttpServer.create( new InetSocketAddress( portNumber), this.maximumConnexion); server.setExecutor(executor);