0

我有一个生成 pdf 的网络服务。在我的 GAE 应用程序中,我有一个按钮,当我单击时,我使用了 ajax 的功能。

$('#test').click(function(){
        $.ajax({
            url: 'provaws.do',
            type: 'get',
            dataType: 'html',
                    success : function(data) {
                    }
        });
    });

这是java中调用ws的方法,使用UrlFetch:

    @RequestMapping(method = RequestMethod.GET, value = PROVAWS_URL)
public void prova(HttpServletRequest httpRequest, HttpServletResponse httpResponse, HttpSession httpSession) throws IOException{
    try {
        URL url = new URL("http://XXXXX/sap/bc/zcl_getpdf/vbeln/yyyyyy");
        HttpURLConnection connection = (HttpURLConnection) url.openConnection();
        connection.setRequestProperty("Authorization","Basic " + Base64.encodeBase64String(("username:password").getBytes()));
        connection.setConnectTimeout(60000);
        if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
            // OK
            ByteArrayOutputStream bais = new ByteArrayOutputStream();
            InputStream is = null;
            try {
              is = connection.getInputStream();
              byte[] byteChunk = new byte[4096];
              int n;

              while ( (n = is.read(byteChunk)) > 0 ) {
                bais.write(byteChunk, 0, n);
              }
            }
            catch (IOException e) {

            }
            finally {
              if (is != null) { is.close(); }
            }
            httpResponse.setContentType("application/pdf");
            httpResponse.setHeader("content-disposition","attachment; filename=yyyyy.pdf");             
            httpResponse.getOutputStream().write(bais.toString().getBytes("UTF-8"));
            httpResponse.getOutputStream().flush();         
        }
....
}

使用 Firebug,我看到了响应:

%PDF-1.3
%âãÏÓ
2 0 obj
<<
/Type /FontDescriptor
/Ascent 720
/CapHeight 660
/Descent -270
/Flags 32
/FontBBox [-177 -269 1123 866]
/FontName /Helvetica-Bold
/ItalicAngle 0
....

我需要在ajax的函数中设置什么来显示pdf?

提前致谢

4

1 回答 1

0

我不太了解Java,但据我了解,您的机制可能不正确。

以下是我的更正:

服务器端代码(JAVA)不是在流中发送文件,而是应该在后端生成pdf,将文件放入文件系统,然后将文件的URI返回给Ajax响应。

对于 Ajax 代码,它从服务器获取 url,然后在 DOM 中显示新的 url。然后用户可以点击此链接阅读/下载 PDF。

边注:

我进一步检查了 Ajax 有用于流式传输数据的方法,尽管 jQueryajax()无法处理。但我认为对于 PDF 文件渲染,流媒体是多余的。参考:jquery ajax,增量读取流?, http://ajaxpatterns.org/HTTP_Streaming#In_A_Blink *

于 2013-03-22T12:14:14.910 回答