<%-- Document : ImportPage Created on : May 16, 2013, 5:21:48 PM Author : onder --%> <%@page import="com.godoro.servlet.MyClass"%> <%@page import="java.util.ArrayList"%> <%@page import="java.util.List"%> <%@page contentType="text/html" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>JSP Page</title> </head> <body> <h1>Hello World!</h1> <% List<String> countryList = new ArrayList<String>(); countryList.add("Türkiye"); countryList.add("Azerbaycan"); countryList.add("Türkmenistan"); countryList.add("Özbekistan"); countryList.add("Kazakistan"); countryList.add("Kırgızistan"); out.println("<ul>"); for (String country : countryList) { out.println(" <li>Ülke <b>" + country + "</b></li>"); } out.println("</ul>"); %> ÜLKELER <ol type="I"> <% for (String country : countryList) { %> <li>Ülke <b><%=country%></b></li> <% } %> </ol> <% MyClass myClass=new MyClass(); %> <%=myClass.getMyMethod()%> </body> </html>Dosyayı İndir