W3Cschool
恭喜您成為首批注冊(cè)用戶(hù)
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
流式文件上傳,流式上傳最大的好處就是不需要磁盤(pán)緩存。您必須通過(guò) WebController 類(lèi)進(jìn)行操作,我們先看一下簡(jiǎn)單的文件上傳例子,首先新建一個(gè)請(qǐng)求處理器。然后迭代所有表單項(xiàng):
@MappingTo("/fileupload.do")
public class FileupLoad extends WebController {
public void execute() throws IOException {
Iterator<FileItemStream> multiStream = this.getMultipartIterator();
while (multiStream.hasNext()){
FileItemStream next = multiStream.next();
if (!next.getName().equals("xxxxx")){
continue;
}
InputStream inputStream = next.openStream();
try{
stream copy ...
}finally {
inputStream.close();
}
}
}
}
更多的流式文件上傳處理請(qǐng)參考 WebController 中其它的重載方法。您可以根據(jù)自己的需要傳入一些參數(shù)。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: