建设境外网站需要什么手续,潍坊网站建设 中公,做纺织都有那些好网站,wordpress熊掌号号主页展现在开发过程中#xff0c;可能遇到这样的业务#xff1a;文件上传时个数不定#xff0c;这样我们不能枚举出所有的文件name#xff0c;这种情况下我们可以使用一个name将所有的文件接收下来#xff1b;
html代码
!DOCTYPE html
html langen
…在开发过程中可能遇到这样的业务文件上传时个数不定这样我们不能枚举出所有的文件name这种情况下我们可以使用一个name将所有的文件接收下来
html代码
!DOCTYPE html
html langen
headmeta charsetUTF-8titleTitle/title
/head
body
form actionhttp://localhost:8021/xxx/upload1 methodpost enctypemultipart/form-datainput typefile namefilebr/input typefile namefilebr/input typefile namefilebr/input typefile namefilebr/input typefile namefilebr/br/button typesubmit提交/button
/form/body
/htmlcontroller代码
使用springboot或者spring mvc框架 PostMapping(/upload1)public String up(RequestPart(value file) ListMultipartFile fileList) {fileList.forEach(a - {System.out.println(a.getOriginalFilename() -- a.getSize());});return success;}这样就接收到了所有文件
over~~