ajax を使用してサーブレットにリクエストを送信し、レポートを生成しています。
レポートが生成されていますが、ブラウザで表示したい
これはリクエスト用の私のajaxコードです
$.post('servleturl',{
from : from,
to : to
},function(data){
// What should I write here in order to display report in browser
});
私のサーブレットコード
OutputStream outputstream = response.getOutputStream();
//This line converts the report to PDF
report.toPdf(outputstream);
outputstream.close();
//Converting the outputstream to JSON to pass as response
json = new Gson().toJson(outputstream);
response.setContentType("application/json");
response.getWriter().write(json);