12345678910111213141516171819202122232425 |
- <%--
- Created by IntelliJ IDEA.
- User: lc
- Date: 2023-03-26
- Time: 下午 2:52
- To change this template use File | Settings | File Templates.
- --%>
- <%@ page contentType="text/html;charset=UTF-8" language="java" %>
- <html>
- <head>
- <title>Title</title>
- </head>
- <body>
- <div>
- <form enctype="multipart/form-data"
- action="<%=request.getContextPath()%>/uploadFile"
- method="post" style="width: 400px; margin: 0 auto" >
- <input type="file" name="file" /> <br />
- <input type="submit" value=" 点我上传 ">
- </form>
- </div>
- </body>
- </html>
|