ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • day53 - JSP(사진 추가 페이지)
    KIC/JSP 2021. 8. 31. 00:10
    반응형

    [photoFrom.jsp]

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>회원 사진 등록</title>
    </head>
    <body> 사진 photo 폴더 생성 (f5)
    <h3>업로드</h3>
    <form action="<%=request.getContextPath()%>/member/photoPro" method="post"
    enctype="multipart/form-data">
    	<input type="file" name="picture">
    	<input type="submit" value="사진등록">
    
    </form>
    
    </body>
    </html>

     

     

    [photoPro.jsp]

    <%@ page language="java" contentType="text/html; charset=UTF-8"
        pageEncoding="UTF-8"%>
        
    <!--
    1. 파일 업로드 하기 -> 업로드 위치는 /photo로 설정
    2. 파일 내용을 opener에 출력하기. 현재 윈도우는 close 함
      -->
    <script>
    img = opener.document.getElementById("pic");
    img.src="<%=request.getContextPath()%>/photo/${filename}"; // 업로드된 이미지 회원가입 화면에 출력
    opener.document.f.picture.value="${filename}";
    self.close();
    </script>
    300x250

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

    day55 - JSP(공지사항 페이지 )  (0) 2021.09.02
    day54 - JSP(공지사항 페이지)  (0) 2021.09.01
    day52 - JSP(login, memberList)  (0) 2021.08.27
    day51 - JSP(model2, login)  (0) 2021.08.26
    day50 - JSP(model2, login, DBconnection)  (0) 2021.08.26

    댓글

Designed by Tistory.