2011-10-23 155 views
1

我試着在我的網站上下載一首歌曲。我正在使用以前使用的下載servlet來使zip文件可供下載。我已經運行了代碼,並且一切似乎都正常,輸出流將讀取整個文件,但保存對話框不會顯示。有任何想法嗎?謝謝你的幫助。代碼如下:保存文件對話框不出現

protected void doGet(HttpServletRequest request, HttpServletResponse response) 
     throws ServletException, IOException { 
    String song = request.getParameter("song"); 
    StringBuilder filePath = new StringBuilder(); 
    try { 
     Thread.sleep(1); 
     String[] info = getSongInfo(song); 
     filePath.append("D:\\My Music\\My Song.m4a"); 
     File file = new File(filePath.toString()); 
     if (!file.exists()) { 
      throw new FileNotFoundException(file.getAbsolutePath()); 
     } 
     response.setHeader("Content-Length", String.valueOf(file.length())); 
     response.setHeader("Content-Type", "audio/mp4a-latm"); 
     response.setHeader("Content-disposition", "attachment; filename="+song+".m4a"); 
     BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file)); 
     BufferedOutputStream bos = new BufferedOutputStream(response.getOutputStream()); 
     byte[] buf = new byte[4096]; 
     while (true) { 
      int length = bis.read(buf); 
      if (length == -1) { 
       break; 
      } 
      bos.write(buf, 0, length); 
     } 
     bos.flush(); 
     bos.close(); 
     bis.close(); 
    } catch (InterruptedException e) { 
     System.err.println("Error message: " + e.getMessage()); 
    } 
} 

使用稱爲:

dojo.xhrGet(
{ 
    url: "/downloadSong?song="+item.title[0] 
}); 
+0

在新窗口中打開該文件的鏈接 –

回答

1

您無法通過AJAX下載文件。 JavaScript由於安全原因沒有設施產生另存爲對話,也沒有將它們存儲在磁盤中。它會消耗響應,但它不能做任何明智的事情。

您需要使用window.location代替:

window.location = "/downloadSong?song=" + item.title[0]; 

得益於Content-Disposition: attachment頭,也不會影響當前打開的頁面。

+0

謝謝,那100%解決了我的問題。 – shortspider

+1

不客氣。 – BalusC