archieve: homework6 change: java version

This commit is contained in:
2025-05-13 13:07:23 +08:00
parent 0132fb98ca
commit 4ca24a5354
9 changed files with 279 additions and 41 deletions
+22
View File
@@ -0,0 +1,22 @@
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>Title</title>
</head>
<body>
<form action="${pageContext.request.contextPath}/UploadServlet" method="post" enctype="multipart/form-data">
<table width="600px">
<tr>
<td>上传者</td>
<td><input type="text" name="name"></td>
<tr>
<td>上传文件</td>
<td><input type="file" name="myfile"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="提交"></td>
</tr>
</table>
</form>
</body>
</html>