mano_doc.jsp 702 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
   <%@ page import="clases.*" %>
<!DOCTYPE html>
	<html>
	<head>
		<meta charset="UTF-8">
		<title>Mano doc desde api</title>
	</head>
	<body style="background-color: #ced5e0;">
		<h1>Cartas!</h1>
		<hr>
		<h2>Manos Aleatorias extraidas desde api</h2>
		<%Carta[] cartas = (Carta[])request.getAttribute("mano"); 
			String nombreJugada = (String) request.getAttribute("nombreJugada");
			
			for(int i=0; i<cartas.length; i++){
		%>
			<img src="<%="imagenesCartas/"+ cartas[i].valor+cartas[i].palo+".png" %>" width=80 height=120>
				
		<%
			}
		%>
		
		<h3>Jugada: <%=nombreJugada%></h3>
	
	
	</body>
</html>