簡體   English   中英

春天沒有下載文件

[英]Files not getting Downloaded in Spring

有一個頁面,我有文件列表。 在瀏覽任何.txt文件時,必須先下載該文件,並顯示一條通知,作為我們在GoogleChrome上下載任何內容時收到的通知。

這是我的Js,它在單擊.txt文件后被調用。在這里,我正在執行的操作是獲取所選文件的文件名和文件路徑。 然后使用ajax將那些文件名和文件路徑發送到spring servlet。

if (options.downloadable) {
  $(easyTree).find('.easy-tree-toolbar').append('<div class="fileDownload"><button class="btn btn-default btn-sm btn-primary"><span class="glyphicon glyphicon-circle-arrow-down"></span></button></div>');
  $(easyTree).find('.easy-tree-toolbar .fileDownload > button').attr('title', options.i18n.downloadTip).click(function() {
    var selected = getSelectedItems();
    var fileName = $(selected).find(' > span > a').text();
    alert("fileName**" + fileName);
    var hrefValue = $(selected).find(' > span > a').attr('href');
    alert("hrefValue**" + hrefValue);
    if (selected.length <= 0) {
      $(easyTree).prepend(warningAlert);
      $(easyTree).find('.alert .alert-content').html(options.i18n.downloadNull);
    } else {
      $.ajax({
        url: "/ComplianceApplication/downloadFileFromDirectory",
        type: "GET",
        data: {
          hrefValue: hrefValue,
          fileName: fileName
        },
        success: function(data) {

          //$(selected).remove();
          //window.location.reload();
        },
        error: function(e) {

        }
      });

    }
  });
}

這是我的springController。 在這里,我可以正確獲取所有數據,但問題是文件沒有下載,甚至沒有出現任何錯誤,因此我可以知道自己在做什么錯誤。

@RequestMapping(value="/downloadFileFromDirectory",method = RequestMethod.GET)
    public  @ResponseBody void downloadFileFromDirectory(@PathVariable("fileName") String fileName,@RequestParam(value = "hrefValue") String hrefValue,HttpServletRequest request, HttpServletResponse response,Model model){
        System.out.println("hrefValue***"+hrefValue);

       String filePath = hrefValue;
        ServletContext context = request.getSession().getServletContext();
        File downloadFile = new File(filePath);
        FileInputStream inputStream = null;
        OutputStream outStream = null;
        try {
            inputStream = new FileInputStream(downloadFile);
            response.setContentLength((int) downloadFile.length());
            response.setContentType(context.getMimeType(downloadFile.getName()));
            // response header
            String headerKey = "Content-Disposition";
            String headerValue = String.format("attachment; filename=\"%s\"", downloadFile.getName());
            //String headerValue = String.format("attachment; filename=\"%s\"", downloadFile.getName());
            response.setHeader(headerKey, headerValue);
            // Write response
            outStream = response.getOutputStream();
            IOUtils.copy(inputStream, outStream);
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if (null != inputStream)
                    inputStream.close();
                if (null != outStream)
                    outStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
 }

有什么建議么 ???

我通常使用這種代碼沒有問題:

public ResponseEntity<InputStreamResource> downloadFile(@PathVariable("idForm") String idForm)
{
    try
    {

            File parent = new File(csvFilesPath);
            File file = new File(parent, idForm+".csv");
            HttpHeaders respHeaders = new HttpHeaders();
            MediaType mediaType = new MediaType("text","csv");
            respHeaders.setContentType(mediaType);
            respHeaders.setContentLength(file.length());
            respHeaders.setContentDispositionFormData("attachment", "file.csv");
            InputStreamResource isr = new InputStreamResource(new FileInputStream(file));
            return new ResponseEntity<InputStreamResource>(isr, respHeaders, HttpStatus.OK);
        }
    catch (Exception e)
    {
        String message = "Errore nel download del file "+idForm+".csv; "+e.getMessage();
        logger.error(message, e);
        return new ResponseEntity<InputStreamResource>(HttpStatus.INTERNAL_SERVER_ERROR);
    }
}

問題出在您的ajax代碼中,因此您可以使用JQuery File Download。

就這么簡單

$.fileDownload('/url/to/download.pdf');

在這里您可以看到一個教程

http://johnculviner.com/jquery-file-download-plugin-for-ajax-like-feature-rich-file-downloads/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM