26 lines
762 B
Plaintext
26 lines
762 B
Plaintext
<%--
|
||
Created by IntelliJ IDEA.
|
||
User: Administrator
|
||
Date: 2022/4/11
|
||
Time: 20:21
|
||
To change this template use File | Settings | File Templates.
|
||
--%>
|
||
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||
<html>
|
||
<head>
|
||
<title>upload</title>
|
||
</head>
|
||
<body>
|
||
<%--测试文件上传,enctype文件上传方式采用多部分表单形式--%>
|
||
<form action="${pageContext.request.contextPath}/user/quick23" method="post" enctype="multipart/form-data">
|
||
名称:<input type="text" name="username"><br>
|
||
<%--多文件上传,如果名称相同使用数组接受--%>
|
||
文件1:<input type="file" name="uploadFile"><br>
|
||
文件2:<input type="file" name="uploadFile"><br>
|
||
<input type="submit" value="提交">
|
||
</form>
|
||
|
||
|
||
</body>
|
||
</html>
|