Files
hutool/hutool-http/src/test/resources/html/formForUpload.html

14 lines
339 B
HTML
Raw Normal View History

2021-01-20 17:10:45 +08:00
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>文件上传表单提交</title>
</head>
<body>
<h1>文件上传测试</h1>
<form action="file" method="post" enctype="multipart/form-data">
文件:<input type="file" name="file"><br>
<input type="submit" />
</form>
</body>
2020-08-07 15:51:31 +08:00
</html>