Http Range in GWT for a resumable download

111 Views Asked by At

I want to find out a way for fetching HTTP_RANGE (sending by http request from browser or download manager) in gwt. I found it in php (_SERVER['HTTP_RANGE']) but i couldn't find a solution for java.

The work that i want to do, is a way for resumable file download using gwt.

1

There are 1 best solutions below

0
On

GWT does not deal with file downloads so I suppose you're rather talking about servlets.

You can get header values using the ServletRequest passed to your servlet.