如何使用Jquery从httpServlet下载文件?

时间:2013-07-25 14:31:26

标签: java jquery servlets post

在我的应用程序中,在客户端创建了一个json对象。此对象发布到HttpServlet,后者根据POST数据创建pdf文件。

将文件发回给用户。调用succes函数,并记录流数据。但是,我想要下载该文件。

如何实现这一目标?

我的客户代码:

$(document).ready(function() {
// when the print button is clicked
$('#exportButton').click(function() {

    var tableIdx = performanceDetailTableController.getTableIdx();

    var allData = {
        "shipTable1":{
            "rows":[
                {  "latitude":"12323","longitude":"213213"},
                {  "latitude":"213213","longitude":"543543"}
            ]},
        "shipTable2":{
            "rows":[
                {  "latitude":"12323", "longitude":"213213"},
                {  "latitude":"213213","longitude":"543543"}
            ]}
        }

    var postData = JSON.stringify(allData);

    $.ajax({
        type : "POST",
        url : 'pdfServlet',
        contentType: "application/json; charset=utf-8",
        data : postData,
                    async : false,
        success : function(data) {
            alert("got some data");
            console.log(data);
        },
    });
});

});

创建文件的servlet:

@Override
public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {

    // get the json content
    StringBuffer jsonContent = getPostedContent(request);

    log.info(jsonContent.toString());

    // convert json to pojo's
    Tables tables = getTablesFromString(jsonContent);

    // create a xml stream
    ByteArrayOutputStream xml = new XmlConverter().getXMLSource(tables);

    // put the xml on the request
    request = setXmlOnRequest(request, xml);

    // create pdf data of the pdf-able xml content
    ByteArrayOutputStream pdf = new PdfHandler().createPdfDataStream(request);

    // response = createResponseheaders(response, request);
    response.setContentType("application/pdf");
    response.setContentLength(pdf.size());
    response.setHeader("Content-disposition", "attachment; filename=test.pdf");
    response.setCharacterEncoding("utf-8");
    response.getOutputStream().write(pdf.toByteArray());

    //close the streams
    pdf.close();
    response.getOutputStream().close();
}

日志中的输出:

%PDF-1.4
%
4 0 obj
<<
/Producer (Apache FOP Version SVN branches/fop-0_95)
/CreationDate (D:20130725162007+02'00')
>>
endobj
5 0 obj
<<
  /N 3
  /Length 11 0 R
  /Filter /FlateDecode
>>
stream
xwTSϽ7PhRHH.*1  J 

* 我的解决方案:*

请参阅http://www.particletree.com/notebook/ajax-file-download-or-not/了解指针

我创建了一个包含一个隐藏字段的表单:

        <button id="exportButton">export</button>
    <form id="exportForm" method="post" action="pdfServlet">
        <input type="hidden" value="empty" id="pdf_data" name="pdf_data" />
    </form>

比我将我的jquery post数据控制器更改为:

    $('#exportButton').click(function() {

    var tableIdx = performanceDetailTableController.getTableIdx();

        var allData = {
        "shipTable1":{
            "rows":[
                {  "latitude":"12323","longitude":"213213"},
                {  "latitude":"213213","longitude":"543543"}
            ]},
        "shipTable2":{
            "rows":[
                {  "latitude":"12323", "longitude":"213213"},
                {  "latitude":"213213","longitude":"543543"}
            ]}
        } 



    var postData = JSON.stringify(allData);

    // put the data on the hidden form field in the export form
    $('#pdf_data').val(postData);

    // and submit the form
    $('#exportForm').submit();

});

所以现在当我点击导出按钮时,表单中的隐藏字段会获取要发布的数据,并且数据将以www-form编码方式发布。

这样servlet就可以处理请求,并将文件下载到客户端。

1 个答案:

答案 0 :(得分:3)

您无法使用ajax下载文件。出于明显的安全原因,JavaScript无法触发与JavaScript上下文中任意检索/生成的内容的另存为对话。如果可能的话,万维网看起来会非常不同。

如果您坚持使用JS / jQuery,则需要发送synchronus GET请求。您可以使用window.location执行此操作(只需将doPost()重命名为doGet())。

window.location = 'pdfServlet?param1=value1&param2=value2';

或者,只需丢弃所有不必要的JS / jQuery,只使用纯<form action="pdfServlet" method="post"> <input type="submit">。额外的好处是它适用于禁用JS的浏览器。

如果您获取ajax的唯一理由实际上是避免刷新页面的天真尝试,那么我可以告诉您,如果响应具有Content-Disposition: attachment标头,则确实不会发生这种情况。所以那部分已经安全了。