upload - Servlet for (large) files chunked uploading -
i trying implement (jetty-based) servlet supporting uploading of (large) files web client, little javascript splits user-selected file chunks, , sends these chunks server using several posts appropriate content-range headers (the rationale of technique able track progress, pause , resume upload).
i have come httpservlet overriding dopost() method, handles content-range header - i.e. writes payload @ specified location file on server.
is there better/recommended way support (large) file upload in servlet? there set of classes in jetty that?
thanks in advance
Comments
Post a Comment