可以直接利用標(biāo)簽 a 和 iframe 兩個(gè)標(biāo)簽的特性,實(shí)現(xiàn)文件下載。
好處是不用彈出新的網(wǎng)頁,就算是下載的文件有異常,也不用擔(dān)心會(huì)破壞當(dāng)前頁面。
現(xiàn)在開工吧:
下載的鏈接類似于:
<a href=”download.do?id=22” target=”iframe的name屬性值”>下載</a>
iframe 的定義:
<iframe name="downFrame" src="" style="display:none;"></iframe>
在處理下載的時(shí)判斷文件不存在的情況下:
if(!new File(filePath).exists()){
print("<script>alert('您所請(qǐng)求的文件不存在!');</script>");
return;
}