0

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.

mat
  • 143
  • 1
  • 1
  • 11

1 Answers1

0

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.

Thomas Broyer
  • 64,353
  • 7
  • 91
  • 164