Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2. pageEncoding="UTF-8"%>
  3. <%@ page import="java.util.ArrayList"%>
  4. <%@ page import="javax.xml.bind.JAXBContext"%>
  5. <%@ page import="javax.xml.bind.JAXBException"%>
  6. <%@ page import="javax.xml.bind.Marshaller"%>
  7. <%@ page import="model.Film"%>
  8. <%@ page import="model.FilmList"%>
  9. <%@ page import="model.FilmDAO"%>
  10. <%@ page trimDirectiveWhitespaces="true"%>
  11. <%
  12. FilmDAO dao=new FilmDAO();
  13.  
  14. ArrayList<Film> allFilms = dao.getAllFilms();
  15. for (int i = 0; i < allFilms.size();i++){
  16. out.println(allFilms.get(i));
  17. }
  18.  
  19. %>
  20. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  21. <html>
  22. <head>
  23. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  24. <title>Insert title here</title>
  25. </head>
  26. <body>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement