I have a controller which send the response Entity as response to AJAX call which is in byte array form of PDF.
Now I want to show that in browser but nothing works. I tried every suggestion from old Stack Overflow questions, but nothing works.
Here is my response from Spring controller:
` %PDF-1.4
%����
6 0 obj
<</Filter/FlateDecode/Length 1983>>stream
x�� .......... [snip rest of the output]`
Here is my AJAX code:
$(".form").submit(function(e) {
var form = $(this);
var url = _contextPath + "pdf/" + id;
$.ajax({
type: "GET",
url: url,
data: form.serialize(),
datatype: "application/pdf",
success: function(data, textStatus, jqXHR)
{
console.log(data);
let pdfWindow = window.open("");
var bb = btoa(encodeURIComponent((data.replace(/[\u00A0-\u2666]/g, function(c) {
return '&#' + c.charCodeAt(0) + ';';
}))));
console.log(bb);
var file = new Blob([bb], {type:'application/pdf'});
console.log(file);
var fileUrl = URL.createObjectURL(file);
pdfWindow.document.write("<iframe width='100%' height='100%' src= '"+file+"'></iframe>");
/*var pdfData = btoa(unescape(encodeURIComponent(data)));
console.log(pdfData);
var pdfDataa = atob(pdfData);
console.log(pdfDataa);*/
/* var bb = btoa(encodeURIComponent((data.replace(/[\u00A0-\u2666]/g, function(c) {
return '&#' + c.charCodeAt(0) + ';';
}))));
console.log(bb);
var file = new Blob([bb], {type:'application/pdf'});
var fileUrl = URL.createObjectURL(file);
window.open(fileUrl,'', 'height=650,width=840');*/
//console.log(data);
// window.open("data:application/pdf;base64, " + data, '', 'height=650,width=840');
/*var blob = new Blob( [data], { type: "application/pdf" });
var fileURL = URL.createObjectURL(blob);
var win = window.open();
win.document.write('<iframe src="' + fileURL + '" frameborder="0"' +
' style="border:0; top:0px; left:0px; bottom:0px;' +
' right:0px; width:100%; height:100%;" allowfullscreen></iframe>')*/
/* var datauri = 'data:application/pdf;base64,' + Base64.encode(data);
var win = window.open();
win.document.write('<iframe src="' + datauri + '" frameborder="0"' +
' style="border:0; top:0px; left:0px; bottom:0px;' +
' right:0px; width:100%; height:100%;" allowfullscreen></iframe>');*/
//var base64EncodedStr = btoa(unescape(encodeURIComponent(data)));
//window.open(data,"_blank","scrollbars=yes,resizable=yes");
//window.open("data:application/pdf," + encodeURI(data));
// window.open("data:application/pdf," + escape(data));
//window.open("data:application/pdf," + base64EncodedStr);
// window.open("data:application/octet-stream;charset=utf-16le;base64,"+base64EncodedStr);
// let pdfWindow = window.open("")
// pdfWindow.document.write("<iframe width='100%' height='100%' src='data:application/pdf;base64, "
// + blob+"'></iframe>");
/* const byteArray = data;
const blob = new Blob([byteArray], {type: 'application/pdf'});
const blobURL = URL.createObjectURL(blob);
var win = window.open();
win.document.write('<iframe src="' + blobURL + '" frameborder="0"' +
' style="border:0; top:0px; left:0px; bottom:0px;' +
' right:0px; width:100%; height:100%;" allowfullscreen></iframe>');*/
/* var len = data.length;
var buffer = new ArrayBuffer(len);
var view = new Uint8Array(buffer);
for (var i = 0; i < len; i++) {
view[i] = binary.charCodeAt(i);
}
*/
/*var base64EncodedStr = btoa(unescape(encodeURIComponent(data.toString())));
var pdfData = base64EncodedStr;
var x = window.open();
var iframe = x.document.createElement('iframe')
iframe.width = '100%'
iframe.height = '100%'
iframe.frameBorder = 0
iframe.style = "border: 0"
iframe.src = "data:application/pdf;base64, " + pdfData
x.document.body.appendChild(iframe);*/
// $('.form').unbind('submit').submit();
}
});
e.preventDefault();
});
<iframe id="frame"></iframe>. Then in your jsvar url = _contextPath + "pdf/" + id; frame.src = url;. Or even simpler<iframe url="#the_url#"></iframe>if the url is static.typeis set to"GET"then? Well anyway, the easiest would be to directly fetch your resource as Blob (this means overriding jQuery's XHR object'sresponseType, then you'd just have to set an iframe's src toURL.createObjectURL(XHR.response);