第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

通過SERVLET下載,但是遇到了無法下載的問題。

通過SERVLET下載,但是遇到了無法下載的問題。

叮當(dāng)貓咪 2023-04-09 17:13:57
我在用servlet寫了一個下載功能,先把文件打包成RAR,然后通過SERVLET下載,但遇到了無法下載的問題。代碼是:public void exportDown(HttpRequest request, HttpServletResponse response,              User user) throws ServletException, IOException {          ExportLogApp app = new ExportLogApp(                  "from Test1 where 1=1 and id <1001 ");          int i = app.exportDownRAR(user.getId(), null, null);          if (i == app.LOG) {              user.addLog("數(shù)據(jù)交換", "導(dǎo)出下載數(shù)據(jù)", "用戶[" + user.getId() + "]導(dǎo)出數(shù)據(jù)成功!");              String filePath = app.getRARpath_save() + File.separator                      + app.getRARname_save() + ".rar";              filePath = filePath.replaceAll("/", "\\\\");              // 定義輸出類型(下載)              response.setContentType("application/force-download");              // 定義輸出文件頭              response.setHeader("Content-Disposition", "attachment;filename=\""                      + app.getRARname_save() + ".rar\"");                File file = new File(filePath);              int len = (int) file.length();                byte[] buf = new byte[len];              FileInputStream fis = new FileInputStream(file);              OutputStream out = response.getOutputStream();              len = fis.read(buf);              out.write(buf, 0, len);              out.flush();              out.close();              fis.close();              file.delete();            } else if (i == app.LOG_ERROR) {              user.addLog("數(shù)據(jù)交換", "導(dǎo)出下載數(shù)據(jù)", "用戶[" + user.getId() + "]導(dǎo)出數(shù)據(jù)失敗!");              PrintWriter out = response.getWriter();              out.println("<script language='javascript'>");              out.println("alert('導(dǎo)出數(shù)據(jù)出錯,請聯(lián)系管理員!');");              out.println("window.location.href='../expert/expert_account.jsp';");              out.println("window.close()");              out.println("</script>");          } else if (i == app.NO_DATA) {            }      }   請幫我解答下,為什么會這樣,我測試用的瀏覽器是IE7.
查看完整描述

2 回答

?
白衣非少年

TA貢獻(xiàn)1155條經(jīng)驗(yàn) 獲得超0個贊

1,導(dǎo)出之前加response.reset(). 
2,導(dǎo)出之后 加return;試試。

查看完整回答
反對 回復(fù) 2023-04-12
?
慕尼黑的夜晚無繁華

TA貢獻(xiàn)1864條經(jīng)驗(yàn) 獲得超6個贊

byte[] buf = new byte[len];  
            FileInputStream fis = new FileInputStream(file);  
            OutputStream out = response.getOutputStream();  
            len = fis.read(buf);  
            out.write(buf, 0, len);  


你都沒有控制文件讀寫結(jié)束循環(huán)控制,這樣能下載全部的文件內(nèi)容嘛,加上什么時(shí)候讀寫文件結(jié)束判斷


查看完整回答
反對 回復(fù) 2023-04-12
  • 2 回答
  • 0 關(guān)注
  • 258 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號