Я делаю запрос HTTP POST от клиента GWT к HTTPServlet. Этот сервлет создает файл PDF из содержимого запроса и записывает его в поток ответов.
Заголовки потока ответов:
Content-Disposition: attachment; filename=report.pdf
Я хочу открыть этот PDF файл в новом окне браузера пользователя или попросить его загрузить его.
import com.google.gwt.http.client.*;
...
String url = "http://www.myserver.com/getData?type=3";
RequestBuilder builder = new RequestBuilder(RequestBuilder.POST, URL.encode(url));
try {
Request request = builder.sendRequest(data, new RequestCallback() {
public void onError(Request request, Throwable exception) {
// Couldn't connect to server (could be timeout, SOP violation, etc.)
}
public void onResponseReceived(Request request, Response response) {
if (200 == response.getStatusCode()) {
// Process the response in response.getText()
// Window.open(url, "_blank", "");
} else {
// Handle the error. Can get the status text from response.getStatusText()
}
}
});
} catch (RequestException e) {
// Couldn't connect to server
}
Как мне обрабатывать ответ в onResponseRecieved?