<%@page import="java.net.URLDecoder"%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Çerez</title>
</head>
<body>
<%
String company = "";
if (request.getCookies() != null) {
for (Cookie cookie : request.getCookies()) {
if (cookie.getName().equals("company")) {
company = URLDecoder.decode(cookie.getValue(),"UTF-8");
}
}
}
%>
<h1>Çerez bulundu :</h1>
<b><i><%=company%></i></b>
</body>
</html>
Dosyayı İndir