Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

uploadpage 본문

JSP/FileUpDown

uploadpage

GAWON 2023. 6. 1. 19:03
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<%--
	파일 업로드 / 다운로드
	
	1. cos.jar
	2. WebContent > 폴더 생성 > 해당 위치를 업로드 위치로 사용(폴더 명 자유)
	3. <form method="post" enctype="multipart/form-data">
	4. 일반 request 대신 MultipartRequest 클래스 사용
 --%>

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
	<div>
		<form action="upload.jsp" method="post" enctype="multipart/form-data">
			<table>
				<tbody>
					<tr>
						<td>업로더</td>
						<td><input type="text" name="uploader"> </td>
					</tr>
					<tr>
						<td>첨부파일</td>
						<td><input type="file" name="filename"> </td>
					</tr>
				</tbody>
			</table>
			<input type="submit" value="업로드">
		</form>
	</div>
</body>
</html>

'JSP > FileUpDown' 카테고리의 다른 글

upload  (0) 2023.06.01
download  (0) 2023.06.01
MANIFEST.MF  (0) 2023.06.01