서블릿을 이용한 다양한 프로그래밍 예제
본 자료는 미리보기를 지원하지 않습니다.
닫기
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
해당 자료는 3페이지 까지만 미리보기를 제공합니다.
3페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

서블릿을 이용한 다양한 프로그래밍 예제에 대한 보고서 자료입니다.

목차

없음

본문내용

// 파일명 : CookieGet.java
import java.io.*;
import javax.servlet.*;
import javax.servlet.http.*;
public class CookieGet extends HttpServlet {
public void doGet (HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
res.setContentType("text/html; charset=KSC5601");
PrintWriter out=res.getWriter();
out.println("

Cookie 추출


");
Cookie[] cookies = req.getCookies();
if (cookies != null && cookies.length > 0) {
out.println("다음과 같은 Cookie 정보가 전달 되었습니다 :
");

키워드

서블릿,   servlet,   쿠키,   get,   post
  • 가격2,000
  • 페이지수10페이지
  • 등록일2006.08.07
  • 저작시기2006.3
  • 파일형식압축파일(zip)
  • 자료번호#360716
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니