中国免费看xxx|伊人日韩欧美一区|成人网站在线看。|我操美女在线播放|美女免费视频一区|操狠狠操狠狠网站|亚洲综合日韩精品视频|一区二区三区成人在线|森田咏美AV在线|一本岛av在线亚洲一区国产一区

Struts2基本讀寫法上傳文件 -電腦資料

電腦資料 時(shí)間:2019-01-01 我要投稿
【m.ddsf.com.cn - 電腦資料】

   

String savepath = ServletActionContext.getServletContext().getRealPath("/upload");System.out.println(savepath);    try {    File desc = new File(savepath,picFileName);    //FileUtils.copyFile(pic, desc);  《--采用此種方法以下均可省略,較簡(jiǎn)單    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();    }

    易錯(cuò)點(diǎn):若寫成--》is.read(buf)<0 將無(wú)法讀取過(guò)來(lái), 但是會(huì)在目標(biāo)路徑生成一個(gè)零字節(jié)文件!

最新文章