如何使用JavaScript打开文件?

前端之家收集整理的这篇文章主要介绍了如何使用JavaScript打开文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个servlet,它将pdf文件作为ByteArrayOutputStream写入servlet的输出流.
如果我打开servlet URL,浏览器将打开该文件.
但是如果在servlet上发生错误,浏览器会打开一个带有错误消息的空pdf.
通过ServletResponse发送错误,浏览器将打开默认错误页面.

我想发送错误消息而不重定向错误页面或打开无效的pdf文件.

我试过了:

new Ajax.Request('/pdfservlet',{            
        onSuccess: function(response) {
            docWindow = window.open('','title');
            docWindow.document.open('application/pdf');
            docWindow.document.write(response);
            docWindow.document.close();
        },onFailure: function(response) {
            alert(response);
        }
    });

但是,onSuccess打开一个页面
[对象]

如何使用JavaScript打开PDF文件

解决方法

注意:我假设您正在使用 Ajax.Request调用中的Prototype框架.

response object不是直接编写的,但它具有responseText属性,该属性应包含返回的PDF.

你有没有尝试过:

new Ajax.Request('/pdfservlet','title');
            docWindow.document.open('application/pdf');
            document.write(response.responseText);
            docWindow.document.close();
        },onFailure: function(response) {
            alert(response);
        }
    });

(注意添加的.responseText)

编辑:好的,所以这不起作用…尝试这样的事情:

new Ajax.Request('/pdfservlet',{            
        onSuccess: function(response) {
            window.open('/pdfservlet');
        },onFailure: function(response) {
            alert(response);
        }
    });

这样做是创建ajax请求,如果成功则在新窗口中打开它.打开新窗口应该很快,实际上并不需要再次请求PDF,因为浏览器应该在Ajax.Request调用期间缓存它.

原文链接:https://www.f2er.com/js/157918.html

猜你在找的JavaScript相关文章