首页 → 名言 → 哲理美文
struts2文件上傳下載 struts2文檔
日期:2023-03-09 14:48:10    编辑:网络投稿    来源:互联网
Struts2基本讀寫法上傳文件 -電腦資料 電腦資料 時間:2019-01-01 我要投稿
为你推荐:
  • 公開的句子
  • Struts2基本讀寫法上傳文件 -電腦資料 電腦資料 時間:2019-01-01 我要投稿 【www.unjs.com - 電腦資料】

    String savepath = ServletActionContext.getServletContext().getRealPath("/upload");System.out.println(savepath); try { File desc = new File(savepath,picFileName); //FileUtils.copyFile(pic, desc); 《--采用此種方法以下均可省略,較簡單 InputStream is = new FileInputStream(pic); OutputStream s = new FileOutputStream(desc); byte[] buf = new byte[1024]; int len; while((len=is.read(buf))!=-1){ os.write(buf); } is.close(); os.close(); } catch (Exception e) { e.printStackTrace(); }

    易錯點:若寫成--》is.read(buf)<0 將無法讀取過來, 但是會在目標路徑生成一個零字節文件!

    这里有更多你想看的
  • 虎年春節賀詞 虎年
    • 本类最新
    • 精品图文
    • 时尚
    • 新闻
    • 生活
    • 视觉
    • 微爱
      栏目ID=88的表不存在(操作类型=0)

    头条推荐

    热门推荐

    特别推荐

    返回顶部