2019. 7. 8. 14:06ㆍJava
방법1 >>
<#form action="movePage.jsp" method="post">
<#select name="url">
<#option>네이버
다음
구글
<#input type= "submit" value="이동하기">
</html>
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<% request.setCharacterEncoding("EUC-KR");
String url = request.getParameter("url");
response.sendRedirect(list.get(url)); %>
방법2 >>
<#form action="movePage.jsp" method="post">
<#select name="url">
<#option>네이버
다음
구글
<#input type= "submit" value="이동하기">
</html>
<%@page import="java.util.HashMap"%>
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<% #HashMap<String, String> list = new HashMap<String, String>();
#list.put("네이버", "http://www.naver.com");
#list.put("다음", "http://www.daum.net");
#list.put("구글", "http://google.com");
#request.setCharacterEncoding("EUC-KR");
#String url = request.getParameter("url");
#response.sendRedirect(list.get(url)); %>
방법3 >>
<#option value = "http://naver.com">네이버
'Java' 카테고리의 다른 글
자바 .classpath 파일 삭제, 날려먹었을 때 (야매) (0) | 2019.10.16 |
---|---|
자바 깃허브 연동 (0) | 2019.09.02 |
JSP 1부터 10까지 테이블에 담기 (0) | 2019.07.08 |
자바 쓰레드 (0) | 2019.07.01 |
오버로딩과 오버라이딩에 대한 짧은 설명 (0) | 2019.07.01 |